a3b57bb001Inline/Text elements may now possess a default element formatter that is triggered by some text within parenthesis immediately after the text but before any other formatters. For anchors, "[[link]](url)" will effectively do the same as "[[link]].href(url)". Some of the code needs to be reworked significantly.
kts
2014-12-23 07:55:24 -0800
17d095e78dAdded .include functionality to block elements (paragraph, pre, code). In the case of the former, the given file is fully parsed and all parsed elements are inserted in the place of the calling block element. In the case of the latter block elements, the file is included but not parsed. Options/formatters are now hashes rather than var=value strings.
kts
2014-12-22 18:22:52 -0800
72761033d0Added some shady media tag processing. Anchor style, [[my_anchor]] can have [[image:my_image.png]], [[audio:...]], [[video:...]], [[youtube:...]], and [[vimeo:...]]. For the HTML converter, this creates img, audio, video, and iframes respectively. I should add an .href modify that encases the given tags in an anchor. Additionally, elements should likely have a default modifier where you are not required to explicitly mark the formatter. Example: [[my_anchor]].href(url) could just be [[my_anchor]](url).
kts
2014-12-16 16:00:21 -0800
80245d57f1Now uses FindBin to access kettext.pm if the module is not installed in the regular lib INC dirs.
kts
2014-12-02 09:00:04 -0800
9cb4f36ee4kettext.pl now has proper usage screen. Also allows for convertor specification via --convert/--convertTo=HTML. Other stuff too!
kts
2014-12-02 04:48:45 -0800
1f19efe295kettext now exists as a front-end script and a module. The module separates parsing from conversion as well.
kts
2014-12-01 22:25:41 -0800
9f541689a0Lists are now prepended with <p></p> to add spacing.
kts
2014-11-30 23:04:57 -0800
275ec64dd1Small header check now must be at beginning of string without any spaces. Match text now surrounded by \Q and \E so the match is not read as regex. Lightly modified documentation
kts
2014-11-28 16:04:40 -0800
9bc47652d7Paragraphs now generate conversion breaks. This is nice.
kts
2014-11-28 07:15:27 -0800