view runtime/syntax/testdir/input/markdown_conceal.markdown @ 34586:385f41acf860

runtime(syntax-tests): Retrofit input/c.c. with TEST_SETUP Commit: https://github.com/vim/vim/commit/a9bc195d6497a18b24428a0271a2839213444baf Author: Aliaksei Budavei <0x000c70@gmail.com> Date: Fri Mar 15 23:22:02 2024 +0300 runtime(syntax-tests): Retrofit input/c.c. with TEST_SETUP Also: - Include a syntax test for Markdown that takes advantage of a sourceable setup configuration. - Update Filelist closes: #14215 Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 18 Mar 2024 19:45:04 +0100
parents
children
line wrap: on
line source

_Italic_, *Italic*.  __Bold__, **Bold**.  
___Bold Italic___, ***Bold Italic***.  
~~Strikethrough~~, S̶t̶r̶i̶k̶e̶t̶h̶r̶o̶u̶g̶h̶.

~~~html
<p>
<del>Strikethrough</del>, <s>Strikethrough</s>.<br />
~~~

```html
<strong><em>Bold Italic</em></strong>.
<strong><em>Bold Italic</em></strong>.<br />
<strong>Bold</strong>, <strong>Bold</strong>.
<em>Italic</em>, <em>Italic</em>.
```