Skip to content

Instantly share code, notes, and snippets.

@catsby
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catsby/9534022 to your computer and use it in GitHub Desktop.
Save catsby/9534022 to your computer and use it in GitHub Desktop.
test
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>%
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