Axion5

The official example template of creating a blog with Bootstrap.

Markup Cheat sheet for Org-mode
    publishedat: 25/Oct/2014
    comments: false
    published: true
    title: Markup Cheat sheet for Org-mode

    A cheatsheet of often used org markup used on this site with examples of rendered html followed by the markup used.

    ---------------------

    1Heading 1

    1.1Heading 2

    1.1.1Heading 3

    * Heading 1
    ** Heading 2
    *** Heading 3

    2styling

    bold /ital/ underline code ~verbatim~
    *bold* /ital/ _underline_  =code= ~verbatim~ 

    Or add : to beginning of line to ignore org markup

    3links

    google
    [[http://www.google.com][google]]
    http://orgmode.org/img/org-mode-unicorn-logo.png
    [[http://orgmode.org/img/org-mode-unicorn-logo.png]]
    Links to images without description get inserted as is.C-c C-l to insert or edit a link

    4quotes

    quoted text

    #+begin_quote
    quoted text
    #+end_quote

    5source code

      cliks.onValue(function() {
          vouchdb.docSave({ msg:'resetpwd',
                            pwd: $("#password1")[0].value,
                            uuid: location.search.slice(10),
                            callback: callback
                          }, 'reception')
              .when(
                  function(data) {
                      console.log('Posted resetpwd msg');
                  },
                  function(err) {
                      console.log('Error posting resetpwd msg:', err);
                  }
              );
          
      });
    
    #+begin_src javascript
    <source code>
    #+end_src

    C-c ' to edit source code, C-c ' to return and update

    6definition List

    vim
    Vi IMproved, a programmers text editor
    ed
    Line-oriented text editor
    - vim :: Vi IMproved, a programmers text editor
    - ed :: Line-oriented text editor

    7rule


    -----  horizontal line (5 dashes)

    8tables

    Col1 Col 2
    ------ ------ Press TAB
    KW Sep
    TW Aug
    | Col1 | Col 2| 
    |------|------|  Press | TAB 
    | KW   | Sep  | 
    | TW   | Aug  |

    9lists

    9.1numbered

    1. number list, use 1. or 1)
    2. line
    3. line 3

    9.2unnumbered

    • use - or +
    • bullet list
    • line 2
    1. number list, alternate 1)
    - bullet list, alternate +

    alt-enter at end of line to add a new one

    10comments

    # comment (not exported)

    Also see http://mooz.github.io/org-js/