aboutsummaryrefslogtreecommitdiffstats
path: root/library/markdownify/TODO
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-05 11:02:19 -0800
committerzotlabs <mike@macgirvin.com>2017-03-05 11:02:19 -0800
commit384db9d10dbded64e83564daa4c51dac05674a2b (patch)
tree9f878ae892650ac124f073b129190d9801c3e4a8 /library/markdownify/TODO
parentb2ea61ea3e389cd3ca36a656e6165fb3500035e5 (diff)
parent5d8b0acc167a8028d3476ba468223da8c6f1a276 (diff)
downloadvolse-hubzilla-384db9d10dbded64e83564daa4c51dac05674a2b.tar.gz
volse-hubzilla-384db9d10dbded64e83564daa4c51dac05674a2b.tar.bz2
volse-hubzilla-384db9d10dbded64e83564daa4c51dac05674a2b.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
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.