forked from jgm/pandoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTML Reader: Parse <ol> type, class, and inline list-style(-type) CSS
- Loading branch information
Showing
2 changed files
with
49 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -275,7 +275,8 @@ Library | |
deepseq-generics >= 0.1 && < 0.2, | ||
JuicyPixels >= 3.1.6.1 && < 3.3, | ||
filemanip >= 0.3 && < 0.4, | ||
cmark >= 0.4.0.1 && < 0.5 | ||
cmark >= 0.4.0.1 && < 0.5, | ||
css-text >= 0.1.2 && < 0.1.3 | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
hftf
Author
Owner
|
||
if flag(old-locale) | ||
Build-Depends: old-locale >= 1 && < 1.1, | ||
time >= 1.2 && < 1.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I'm reluctant to use css-text. I used it in 1.15 for self-contained, and got bitten by a nasty bug.
yesodweb/css-text#6
Looking into the code further, I found lots of problems which still haven't been resolved. I don't really trust the library in its current state. Do we need it for this simple purpose?