ibis
ibis copied to clipboard
Which flavor of Markdown is used?
I'm trying to add a table to my PDF but I'm not sure how to format it. Which Markdown variant should I look at?
Same here, tried like below but result is not table formatted.
| Command | Description |
|------------ |----------------|
| Test | Test |
It uses Github Flavored Markdown. I use tables all the time and ibis renders them correctly. For the example above, please try below. It should work:
| Command | Description |
|---------|-------------|
| Test | Test |
Note how the vertical bars is one space past the longest column value. There is no space in the horizontal bar as well.
@cwthomas-llu do you ever generate HTML and other formats as per #30 #15 ?
@alexellis I do insert images as per #30 , but I had to read how to do it from the GFM documentation. Also, watch out in terms of the path of the image file. I thought the path was relative to the content folder. But it is not. The path is relative to the root folder.