aboutsummaryrefslogtreecommitdiffstats
path: root/library/markdownify/TODO
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-05 18:22:37 +1100
committerGitHub <noreply@github.com>2017-03-05 18:22:37 +1100
commit215bd07f0b23c03f8af0be7bee1d393f1821087d (patch)
tree26809ee07eeee05240878bd08cfb4fdcf4bb450a /library/markdownify/TODO
parent8e1716065ee01959fc799fa14ba627392a876afa (diff)
parent6c79e0c077971029343b2dff30017571ea118438 (diff)
downloadvolse-hubzilla-215bd07f0b23c03f8af0be7bee1d393f1821087d.tar.gz
volse-hubzilla-215bd07f0b23c03f8af0be7bee1d393f1821087d.tar.bz2
volse-hubzilla-215bd07f0b23c03f8af0be7bee1d393f1821087d.zip
Merge pull request #688 from dawnbreak/markdown
:arrow_up: :hammer: Upgrade Markdownify library.
Diffstat (limited to 'library/markdownify/TODO')
-rw-r--r--library/markdownify/TODO29
1 files changed, 0 insertions, 29 deletions
diff --git a/library/markdownify/TODO b/library/markdownify/TODO
deleted file mode 100644
index 06ec8508b..000000000
--- a/library/markdownify/TODO
+++ /dev/null
@@ -1,29 +0,0 @@
-Markdownify
-===========
-* handle non-markdownifiable lists (i.e. `<ul><li id="foobar">asdf</li></ul>`)
-* organize methods better (i.e. flushlinebreaks & setlinebreaks close to each other)
-* take a look at function names etc.
-* is the new (in rev. 93) lastclosedtag property needed?
-* word wrapping (some work is done but it's still very buggy)
-
-
-Markdownify Extra
-=================
-
-* handle table alignment with KEEP_HTML=false
-* handle tables without headings when KEEP_HTML=false is set
-* handle Markdown inside non-markdownable tags
-
-
-Implementation Thoughts
-=======================
-* non-markdownifiable lists and markdown inside non-markdownable tags as well as the current
- table implementation could be rewritten by using a rollback mechanism.
-
- example:
-
- <ul><li>asdf</li><li id="foobar">asdf</li></ul>
-
- we come to `<ul>`, know that this might fail and create a snapshot of our current parser
- we keep on parsing and when we reach `<li id="foobar">` we gotta rollback and keep this
- list in HTML format.