Fix blank p tags after p tag, before pre
Also process p tags, and strip off new line.
This commit is contained in:
parent
d158e2f761
commit
9d39eac0b9
1 changed files with 5 additions and 12 deletions
|
@ -45,32 +45,25 @@ lib.parseFunc {
|
|||
lib.parseFunc_RTE < lib.parseFunc
|
||||
lib.parseFunc_RTE {
|
||||
# Processing <ol>, <ul> and <table> blocks separately
|
||||
externalBlocks = blockquote, div, dd, dl, ol, ul, pre
|
||||
externalBlocks = blockquote, div, dd, dl, ol, ul, pre, p
|
||||
externalBlocks {
|
||||
ol {
|
||||
stripNL = 1
|
||||
stdWrap.parseFunc = < lib.parseFunc
|
||||
}
|
||||
ul {
|
||||
stripNL = 1
|
||||
stdWrap.parseFunc = < lib.parseFunc
|
||||
}
|
||||
ul < .ol
|
||||
pre {
|
||||
stripNl = 1
|
||||
stdWrap.parseFunc < lib.parseFunc
|
||||
}
|
||||
div {
|
||||
stripNL = 1
|
||||
callRecursive = 1
|
||||
}
|
||||
article < .div
|
||||
aside < .div
|
||||
blockquote < .div
|
||||
footer < .div
|
||||
header < .div
|
||||
nav < .div
|
||||
section < .div
|
||||
dl < .div
|
||||
dd < .div
|
||||
p < .div
|
||||
}
|
||||
plainTextStdWrap {
|
||||
replacement {
|
||||
|
@ -91,7 +84,7 @@ lib.parseFunc_RTE {
|
|||
}
|
||||
nonTypoTagStdWrap {
|
||||
encapsLines {
|
||||
encapsTagList = p,pre,h1,h2,h3,h4,h5,h6,hr,dt
|
||||
encapsTagList = p,h1,h2,h3,h4,h5,h6,hr,dt
|
||||
remapTag.DIV = P
|
||||
nonWrappedTag = P
|
||||
innerStdWrap_all.ifBlank =
|
||||
|
|
Loading…
Reference in a new issue