ibis icon indicating copy to clipboard operation
ibis copied to clipboard

Which flavor of Markdown is used?

Open wishinghand opened this issue 4 years ago • 4 comments

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?

wishinghand avatar Dec 16 '20 02:12 wishinghand

Same here, tried like below but result is not table formatted.

| Command     | Description    |
|------------ |----------------|
| Test        | Test           |

semiherdogan avatar Dec 17 '20 12:12 semiherdogan

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 avatar Jan 14 '21 01:01 cwthomas-llu

@cwthomas-llu do you ever generate HTML and other formats as per #30 #15 ?

alexellis avatar Jan 18 '21 19:01 alexellis

@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.

cwthomas-llu avatar Jan 19 '21 17:01 cwthomas-llu