See here for primary reference
Try:
$ pandoc -t native
| table |
|-------|
Try:
$ pandoc -t native
| table |
|-------|
| --[==============================[ | |
| # attr-color.lua | |
| A Pandoc filter which sets LaTeX text/background/frame color(s) on | |
| Span and Div elements based on Pandoc attributes. | |
| ## Usage | |
| See https://git.io/JI4yA |
| -- This is a sample custom writer for pandoc, using Layout to | |
| -- produce nicely wrapped output. | |
| local layout = pandoc.layout | |
| local text = pandoc.text | |
| local type = pandoc.utils.type | |
| local l = layout.literal | |
| -- Table to store footnotes, so they can be included at the end. |
| --[[ | |
| Add support for a custom inline syntax. | |
| This pandoc Lua filter allows to add a custom markup syntax | |
| extension. It is designed to be adjustable; it should not be | |
| necessary to modify the code below the separator line. | |
| The example here allows to add highlighted text by enclosing the | |
| text with `==` on each side. Pandoc supports this for HTML output | |
| out of the box. Other outputs will need additional filters. |
| #!/usr/bin/env perl | |
| use 5.014; | |
| # use utf8; | |
| use utf8::all; | |
| use strict; | |
| use warnings; | |
| use warnings FATAL => 'utf8'; | |
| use autodie; |