Additional link attributes (like “target”) can be added, for more details please see Inline Links

[Foo](https://foo.com){:target="_blank"}

Code block

var foo = 'bar';

Table

Priority apples Second priority Third priority
ambrosia gala red delicious
pink lady jazz macintosh
honeycrisp granny smith fuji
| Priority apples | Second priority | Third priority |
| --------------- | --------------- | -------------- |
| ambrosia        | gala            | red delicious  |
| pink lady       | jazz            | macintosh      |
| honeycrisp      | granny smith    | fuji           |

Specifying a Header ID

kramdown

https://kramdown.gettalong.org/syntax.html#specifying-a-header-id

Code:

##### Hello1 {#id1}

##### Hello2 # {#id2}

##### Header with auto id

::View-Start::

Hello1
Hello2
Header with auto id

::View-End::

markdown

http://stackoverflow.com/a/7335839/4685522

Code:

## heading

View:

heading

References