editor_help.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!-- Modal -->
  2. <div class="modal fade" id="editor-help" tabindex="-1" role="dialog" aria-labelledby="editor-help">
  3. <div class="modal-dialog" role="document">
  4. <div class="modal-content">
  5. <div class="modal-header">
  6. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  7. <h4 class="modal-title" id="editor-help">Editor Cheatsheet</h4>
  8. </div>
  9. <div class="modal-body">
  10. <div class="cheatsheet">
  11. <h2>Emojis</h2>
  12. <div class="emojis">
  13. A full list of available emojis can be found <a href="http://www.emoji-cheat-sheet.com/">here</a>.
  14. </div>
  15. <h2>Typography</h2>
  16. <div class="typography">
  17. <span >
  18. # Header1 <br>
  19. ## Header2 <br>
  20. </span>
  21. <span>
  22. * Unordered item1 <br>
  23. * Unordered item2 <br>
  24. </span>
  25. <span>
  26. 1. Ordered item1 <br>
  27. 2. Ordered item2 <br>
  28. </span>
  29. </div>
  30. <p class="text-center" style="margin-top: 1em;">*<em>Emphasized text</em>*</p>
  31. <p class="text-center">**<strong>Bold Text</strong>**</p>
  32. <p class="text-center">*** (Horizontal rule)</p>
  33. <p class="text-center">> Blockquote</p>
  34. <h2>Links</h2>
  35. <p class="text-center">[Google](http://www.google.com)</p>
  36. <p class="text-center">[Google](http://www.google.com "Google")</p>
  37. <p class="text-center">&hellip;</p>
  38. <p class="text-center">![Img Description](/path/to/kittens.jpg)</p>
  39. <p class="text-center">[![Description](http://kittens.com/kitty.jpg)](http://google.com)</p>
  40. <h2>Code</h2>
  41. <div class="code-hints" style="margin-top: 2em;">
  42. <div class="code-example">
  43. <span>
  44. ```python <br>
  45. print "Hello world"<br>
  46. ```
  47. </span>
  48. <span class="markup">{{ '```python\r print "Hello World"\n```' | markup | safe }}</span>
  49. </div>
  50. </div>
  51. <p class="credit text-center" style="bottom: 10px; position: absolute; left: 0; right: 0; margin: 0 auto">
  52. <small>For a more detailed info visit the <a href="http://daringfireball.net/projects/markdown/basics">official Markdown website</a></small>
  53. </p>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>