Vitaly Puzrin
10 years ago
8 changed files with 38 additions and 92 deletions
@ -1,13 +0,0 @@ |
|||
We need to track compatibility with another implementation. |
|||
|
|||
- By default try to use fixtures from another packs |
|||
- `remarked` / `marked` fixtures are preferable, because stmd data |
|||
is partially outdated. |
|||
- If fixtures are missed or conflicting - create new ones here. |
|||
|
|||
Rules: |
|||
|
|||
1. Keep folders structure similar to [stmd](https://github.com/jgm/stmd) tests. |
|||
2. Don't forget to write case descriptions in fixtures. |
|||
3. Keep file name in lowercase, with underline for words separation. |
|||
|
@ -1,8 +0,0 @@ |
|||
<pre><code class="abc">``` |
|||
</code></pre> |
|||
<pre><code class="blah"> |
|||
````` |
|||
|
|||
```` |
|||
|
|||
</code></pre> |
@ -1,10 +0,0 @@ |
|||
````abc |
|||
``` |
|||
```` |
|||
``````blah |
|||
|
|||
````` |
|||
|
|||
```` |
|||
|
|||
``````````` |
@ -1,24 +0,0 @@ |
|||
<p>This is a fenced code block:</p> |
|||
<pre><code class="haskell">pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
</code></pre> |
|||
<p>Here is one with tildes:</p> |
|||
<pre><code class="haskell">pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
</code></pre> |
|||
<p>More metadata:</p> |
|||
<pre><code class="haskell">pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
</code></pre> |
|||
<p>More backticks:</p> |
|||
<pre><code class="haskell">pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
|
|||
backticks :: String |
|||
backticks = "`````" |
|||
</code></pre> |
|||
<p>Without an end:</p> |
|||
<pre><code>code with |
|||
no end |
|||
|
|||
</code></pre> |
@ -1,35 +0,0 @@ |
|||
This is a fenced code block: |
|||
```haskell |
|||
pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
``` |
|||
Here is one with tildes: |
|||
|
|||
~~~ haskell |
|||
pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
~~~ |
|||
|
|||
More metadata: |
|||
|
|||
```haskell numberLines start=50 |
|||
pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
``` |
|||
|
|||
More backticks: |
|||
|
|||
```````` haskell |
|||
pairs :: [(Int,Char)] |
|||
pairs = [(x,y) | x <- [0..10], y <- ['a'..'z']] |
|||
|
|||
backticks :: String |
|||
backticks = "`````" |
|||
````````````` |
|||
|
|||
Without an end: |
|||
|
|||
``` |
|||
code with |
|||
no end |
|||
|
@ -0,0 +1,5 @@ |
|||
. |
|||
~~Strikeout~~ |
|||
. |
|||
<p><del>Strikeout</del></p> |
|||
. |
@ -0,0 +1,30 @@ |
|||
copyright |
|||
. |
|||
(c) (C) |
|||
. |
|||
<p>© ©</p> |
|||
. |
|||
|
|||
|
|||
reserved |
|||
. |
|||
(r) (R) |
|||
. |
|||
<p>® ®</p> |
|||
. |
|||
|
|||
|
|||
trademark |
|||
. |
|||
(tm) (TM) |
|||
. |
|||
<p>™ ™</p> |
|||
. |
|||
|
|||
|
|||
plus-minus |
|||
. |
|||
+/-5 |
|||
. |
|||
<p>±5</p> |
|||
. |
Loading…
Reference in new issue