Render HTML in Markdown Preview
markadrake opened this issue · 1 comments
From what I can tell, PanWriter uses the following package to provide the preview pane to markdown files.
https://github.com/markdown-it/markdown-it#markdown-it
There is an option that can be toggled to true
that allows HTML to be rendered.
Perhaps we could have a settings dialog to manage some of the default properties?
The latest version, running on Mac, doesn't seem to support it.
Here is my markdown:
The preview:
I think I want to keep the default to not support inline HTML in the preview. Because HTML is only one output format when exporting with pandoc, and it won't be included when you export e.g. to Word or LaTeX. But yes, we could add an option...
But what you seem try to do is simply have a table with borders? Try:
| foo | bar |
| --- | --- |
| baz | bim |
or:
---
header-includes: |-
<style>
th, td {
border: 1px solid black;
}
</style>
---
| foo | bar |
| --- | --- |
| baz | bim |