Open Tloru opened 3 years ago
If I have something like this:
#[derive(Content)] struct Thing { #[md] content: String, }
And I want to render the following markdown (note, has a table):
# This is Markdown Nice table: | this | that | | ---- | ---- | | 2 | 1 |
Rendering tables with pulldown-cmark requires one to set the ENABLE_TABLES option.
pulldown-cmark
ENABLE_TABLES
Does Ramhorns support tables in Markdown? More generally, does it support setting Options for #[md]? Or do we need to pull in pulldown-cmark and do this manually?
Options
#[md]
Thanks!
If I have something like this:
And I want to render the following markdown (note, has a table):
Rendering tables with
pulldown-cmark
requires one to set theENABLE_TABLES
option.Does Ramhorns support tables in Markdown? More generally, does it support setting
Options
for#[md]
? Or do we need to pull inpulldown-cmark
and do this manually?Thanks!