diff options
author | friendica <info@friendica.com> | 2012-10-22 19:46:18 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-22 19:46:18 -0700 |
commit | a7abe24382bac00243fd19ebc2cdde87569eab79 (patch) | |
tree | 2e802f3357af5e13407241e1c94a17f5e7962517 /library/markdownify/TODO | |
parent | 896ca97330f86afe3ab9c7a07ae6d1676c1a546a (diff) | |
download | volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.gz volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.tar.bz2 volse-hubzilla-a7abe24382bac00243fd19ebc2cdde87569eab79.zip |
more file cleanup
Diffstat (limited to 'library/markdownify/TODO')
-rw-r--r-- | library/markdownify/TODO | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/library/markdownify/TODO b/library/markdownify/TODO new file mode 100644 index 000000000..06ec8508b --- /dev/null +++ b/library/markdownify/TODO @@ -0,0 +1,29 @@ +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. |