mhpreiman
11/16/2016 - 7:59 PM

Markdown MD

<xmp> for showing html without a hassle: this text is between tags



Mark unfinished text in cacher with:

<b><font color=red>

</font><b>


cbse stands for "can be something else"


Best cacher edit themes (apr 2018):

katzenmilch
solarized light
sql server
tomorrow
chaos
clouds midnight

Bugs

<font> breaks the next heading
Fix: use extra <font></font> followed by an empty line before the heading:

<font>This breaks the next heading. Add the following:</font>
<font></font>

# Don't let this heading become a victim

<pre> breaks markdown
Except if followed by a list item... Fix: add a &emsp; (or &nbsp;) afterwards:

<pre></pre>
&nbsp;

<table> breaks markdown
Fix: add a <br> afterwards

<font> that has no text on the following line breaks the last list before
Fix: add text after <font>

To ensure code examples get the right language,

specify it after starting backticks:
normal:

;Close/open navigation pane
    !n::  

specify the language eg:   ```ahk

;Close/open navigation pane
    !n::  


Escape chars

for <tags> use `
or
for < use &lt;
for > use &gt;
for * use &ast;


Emojis see more

🍎    &#x1F34E;
🍏    &#x1F34F;
🏮    &#127982;
💡    &#128161;

💙    &#x1F499;
💚    #x1F49A;
💜    &#x1F49C;
💛    &#x1F49B;

📖    &#128214;
📒    &#128210;
📙    &#x1F4D9;
📘    &#x1F4D8;
📗    &#x1F4D7;

🀄    &#126980;

🔴    &#x1F534;
🔶    &#x1F536;
🔸     &#x1F538;
🔵    &#x1F535;
🔷    &#x1F537;
🔹    &#x1F539;

🔺    &#x1F53A;
🔻    &#x1F53B;
🔼     &#x1F53C;
🔽     &#x1F53D;

🅰     &#127344;
🔤     &#128292;
🆚     &#127386;

❶ ❷     &#10102; &#10103;
➀ ➁     &#10112; &#10113;
⁰ ¹ ² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹

❗     &#10071;
❕     &#10069;
!     &#65281;
🕊     &#x1F54A;
🐬     &#x1F42C;
🏵     &#x1F3F5;
🖼     &#x1F5BC;
🛰     &#x1F6F0;
🖇     &#x1F587;
🏷     &#x1F3F7;
🗒     &#x1F5D2;
⚙     &#x2699;
⚜     &#x269C;
✳     &#x2733;
✴     &#x2734;
❇     &#x2747;
*     &#x002A;
✱     &#10033;
️ ⃣     &#xFE0F;
▫     &#x25AB;
◻     &#x25FB;
❏     &#10063;
✚     &#x0271A;
⛻     &#9979;
ⁿ      &#8319;
²      &#178;

Styling

abbr     <acronym title="single line">abbr</acronym>

abbr     <abbr title="double line">abbr</abbr>

<hr width="10%">

<font color="gray">aaa</font>     
NB! Breaks markdown list items (nagu git failis, millega jamasin - seega lisa enne listi <font></font> ja tühi rida)

more   colors   here
darkorange gold cornsilk darkseagregaen greenyellow palegreen aquamarine darkturquoise darkcyan cadetblue lightblue lightcyan dodgerblue deepskyblue
lavender thistle darkmagenta darkviolet darkorchid mediumslateblue magenta fuchsia deeppink hotpink pink mediumvioletred crimson indianred brown  ghostwhite whitesmoke gainsboro lightgray silver darkgray gray dimgray #3a3a3a lightslategray slategray


Styling (w examples)

text and code         > text and `code`


highlightedtext       `highlighted`**`text`**
                or
                `highlighted`&#8203;`text`


italic  bold  both    <code><i>italic</i> <b>bold</b> <b><i>both</i></b></code>

strikethrough           ~~strikethrough~~

 ̇ abbr ̇               <abbr title="abbreviation">&nbsp;&#775;&thinsp;abbr&nbsp;&#775;&thinsp;</abbr>
               or
 ̇ abbr             <abbr title="abbreviation">&nbsp;&#775;&thinsp;abbr&nbsp;&#775;&thinsp;</abbr>
               or
¨abbr              <abbr title="abbreviation">&die;abbr</abbr>
                  or
⋅abbr              <abbr title="abbreviation">&sdot;abbr</abbr>

      ![Image text](https://adium.im/images/logo.png)
      [![img](https://adium.im/images/logo.png)](https://adium.im/images/logo.png)
           <img src="https://adium.im/images/logo.png" width="5%">
Comments:         [comment]: <> (This is a comment, it will not be shown)

🏵 imagelink          &emsp; [&#x1F3F5;](url) <font color=gainsboro>imagelink</font> &emsp;

Tables

  • align does NOT work on <th>
  • cellspacing="2"
  • height="30"
  • width="33%"
  • bgcolor="red"    

table 1

  Col1     Col2  
  Col1     Col2  
  Col1     Col2  
table 2
  Col1     Col2  
  Col1     Col2  
  Col1     Col2  
table 3
  Header1     Header2     Header3  
  Col1     Col2     Col3  
  Col1     Col2     Col3  
  Col1     Col2     Col3  
table 1 ```
  Col1     Col2  
  Col1     Col2  
  Col1     Col2  

``` table 1 with fonts ```
  Col1     Col2  
  Col1     Col2  
  Col1     Col2  

``` table 2 ```
  Col1     Col2  
  Col1     Col2  
  Col1     Col2  
``` **But it's easier this way:** ```
  Col1     Col2  
  Col1     Col2  
  Col1     Col2  
``` table 3 ```
  Header1     Header2     Header3  
  Col1     Col2     Col3  
  Col1     Col2     Col3  
  Col1     Col2     Col3  

```