Remove dir=auto from <li> #1
1 changed files with 0 additions and 7 deletions
|
@ -232,13 +232,6 @@ where
|
|||
self.write("\n<ul dir=\"auto\">\n")
|
||||
}
|
||||
}
|
||||
Tag::Item => {
|
||||
if self.end_newline {
|
||||
self.write("<li dir=\"auto\">")
|
||||
} else {
|
||||
self.write("\n<li dir=\"auto\">")
|
||||
}
|
||||
}
|
||||
|
||||
Tag::Emphasis => self.write("<em>"),
|
||||
Tag::Strong => self.write("<strong>"),
|
||||
Tag::Strikethrough => self.write("<del>"),
|
||||
|
|
Loading…
Add table
Reference in a new issue
Don't remove the whole block as it would transform lists to plain text. Just remove
dir=\"auto\"
from both calls to writeI didn't intended to remove whole block. Frankly I don't know how this has taken place. Feel free to make the appropriate modification.
Thanks for checking the detail.