C# 클래스 NBoilerpipePortable.Parser.CommonTagActions

Defines an action that is to be performed whenever a particular tag occurs during HTML parsing.
Defines an action that is to be performed whenever a particular tag occurs during HTML parsing.
파일 보기 프로젝트 열기: Synergex/Baconography

공개 프로퍼티들

프로퍼티 타입 설명
TA_ANCHOR_TEXT TagAction
TA_BLOCK_LEVEL TagAction
TA_BODY TagAction
TA_FONT TagAction
TA_IGNORABLE_ELEMENT TagAction
TA_IMG_ELEMENT TagAction
TA_INLINE_NO_WHITESPACE TagAction
TA_INLINE_WHITESPACE TagAction

공개 메소드들

메소드 설명
CommonTagActions ( ) : System

메소드 상세

CommonTagActions() 공개 메소드

public CommonTagActions ( ) : System
리턴 System

프로퍼티 상세

TA_ANCHOR_TEXT 공개적으로 정적으로 프로퍼티

Marks this tag as "anchor" (this should usually only be set for the <A> tag).
Marks this tag as "anchor" (this should usually only be set for the <A> tag). Anchor tags may not be nested. There is a bug in certain versions of NekoHTML which still allows nested tags. If boilerpipe encounters such nestings, a SAXException is thrown.
public static TagAction TA_ANCHOR_TEXT
리턴 TagAction

TA_BLOCK_LEVEL 공개적으로 정적으로 프로퍼티

Explicitly marks this tag a simple "block-level" element, which always generates whitespace
public static TagAction TA_BLOCK_LEVEL
리턴 TagAction

TA_BODY 공개적으로 정적으로 프로퍼티

Marks this tag the body element (this should usually only be set for the <BODY> tag).
Marks this tag the body element (this should usually only be set for the <BODY> tag).
public static TagAction TA_BODY
리턴 TagAction

TA_FONT 공개적으로 정적으로 프로퍼티

Special TagAction for the <FONT> tag, which keeps track of the absolute and relative font size.
Special TagAction for the <FONT> tag, which keeps track of the absolute and relative font size.
public static TagAction TA_FONT
리턴 TagAction

TA_IGNORABLE_ELEMENT 공개적으로 정적으로 프로퍼티

Marks this tag as "ignorable", i.e.
Marks this tag as "ignorable", i.e. all its inner content is silently skipped.
public static TagAction TA_IGNORABLE_ELEMENT
리턴 TagAction

TA_IMG_ELEMENT 공개적으로 정적으로 프로퍼티

Marks this tag as "ignorable", i.e.
Marks this tag as "ignorable", i.e. all its inner content is silently skipped.
public static TagAction TA_IMG_ELEMENT
리턴 TagAction

TA_INLINE_NO_WHITESPACE 공개적으로 정적으로 프로퍼티

Marks this tag a simple "inline" element, which neither generates whitespace, nor a new block.
Marks this tag a simple "inline" element, which neither generates whitespace, nor a new block.
public static TagAction TA_INLINE_NO_WHITESPACE
리턴 TagAction

TA_INLINE_WHITESPACE 공개적으로 정적으로 프로퍼티

Marks this tag a simple "inline" element, which generates whitespace, but no new block.
Marks this tag a simple "inline" element, which generates whitespace, but no new block.
public static TagAction TA_INLINE_WHITESPACE
리턴 TagAction