Home
last modified time | relevance | path

Searched refs:isBlockLevel (Results 1 – 4 of 4) sorted by relevance

/external/markdown/markdown/
Dpreprocessors.py138 and markdown.isBlockLevel(left_tag):
142 if not (markdown.isBlockLevel(left_tag) \
159 if markdown.isBlockLevel(left_tag) or left_tag == "--" \
Dtreeprocessors.py306 if markdown.isBlockLevel(elem.tag) and elem.tag not in ['code', 'pre']:
308 and len(elem) and markdown.isBlockLevel(elem[0].tag):
311 if markdown.isBlockLevel(e.tag):
D__init__.py117 def isBlockLevel(tag): function
/external/webkit/Source/WebCore/platform/mac/
DHTMLConverter.mm509 BOOL isBlockLevel = NO;
513 isBlockLevel = [val boolValue];
517 isBlockLevel = YES;
519isBlockLevel = ([@"block" isEqualToString:displayVal] || [@"list-item" isEqualToString:displayVal]…
521 [_elementIsBlockLevel setObject:[NSNumber numberWithBool:isBlockLevel] forKey:element];
523 return isBlockLevel;
1045 BOOL retval = YES, isBlockLevel = [self _elementIsBlockLevel:element];
1046 if (isBlockLevel) {
1090 …if (url) [self _addAttachmentForElement:element URL:url needsParagraph:isBlockLevel usePlaceholder…
1104 …tval = ![self _addAttachmentForElement:element URL:url needsParagraph:isBlockLevel usePlaceholder:…
[all …]