-
-
Save catsby/9534022 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X POST -d '{"text":"===== ===== ======= \n A B A and B \n===== ===== ======= \nFalse False False \nTrue False False \nFalse True False \nTrue True True \n===== ===== ======= \n"}' https://api.github.com/markdown | |
<p>===== ===== =======<br> | |
A B A and B<br> | |
===== ===== =======<br> | |
False False False<br> | |
True False False<br> | |
False True False<br> | |
True True True<br> | |
===== ===== ======= </p>% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X POST -d '{"text":"This is **strong text**.\n\n hello \n - test \n- another"}' https://api.github.com/markdown | |
<p>This is <strong>strong text</strong>.</p> | |
<p>hello </p> | |
<ul> | |
<li>test<br><ul> | |
<li>another</li> | |
</ul> | |
</li> | |
</ul>% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment