minor updates to vimwiki reader. (#3759)

- updated comments in Vimwiki.hs to reflect current status of
implementation
- added vimwiki to trypandoc
This commit is contained in:
Yuchen Pei 2017-06-26 02:41:51 -04:00 committed by John MacFarlane
parent 492b3b1291
commit f09473eab7
2 changed files with 7 additions and 7 deletions

View file

@ -28,20 +28,20 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Conversion of vimwiki text to 'Pandoc' document. Conversion of vimwiki text to 'Pandoc' document.
-} -}
{-- {--
progress: [X]: implemented
[O]: not implemented
* block parsers: * block parsers:
* [X] header * [X] header
* [X] hrule * [X] hrule
* [X] comment * [X] comment
* [X] blockquote * [X] blockquote
* [X] preformatted * [X] preformatted -- using codeblock
* [X] displaymath * [X] displaymath
* [X] bulletlist / orderedlist * [X] bulletlist / orderedlist
* [X] orderedlist with 1., i., a) etc identification. * [X] todo lists -- using span.
* [X] todo lists -- not list builder with attributes? using span.
* [X] table * [X] table
* [X] centered table -- using div * [X] centered table -- using div
* [O] colspan and rowspan -- pandoc limitation, see issue #1024 * [O] colspan and rowspan -- see issue #1024
* [X] paragraph * [X] paragraph
* [X] definition list * [X] definition list
* inline parsers: * inline parsers:
@ -58,8 +58,7 @@ Conversion of vimwiki text to 'Pandoc' document.
* misc: * misc:
* [X] `TODO:` mark * [X] `TODO:` mark
* [X] metadata placeholders: %title and %date * [X] metadata placeholders: %title and %date
* [O] control placeholders: %template and %nohtml -- %template added to * [O] control placeholders: %template and %nohtml -- ignored
meta, %nohtml ignored
--} --}
module Text.Pandoc.Readers.Vimwiki ( readVimwiki module Text.Pandoc.Readers.Vimwiki ( readVimwiki

View file

@ -94,6 +94,7 @@ $(document).ready(function() {
<option value="rst">reStructuredText</option> <option value="rst">reStructuredText</option>
<option value="textile">Textile</option> <option value="textile">Textile</option>
<option value="t2t">Txt2Tags</option> <option value="t2t">Txt2Tags</option>
<option value="vimwiki">Vimwiki</option>
</select> </select>
<br/> <br/>
<textarea id="text" maxlength="3000" rows="15"></textarea> <textarea id="text" maxlength="3000" rows="15"></textarea>