Syntax Highlighting

Ruby Static Pro uses the Rouge syntax highlighter.

To use syntax highlight use triple backticks or tildes:

    ```python
    def hello_world():
        print("Hello, World!")
    ```

Will output:

def hello_world():
    print("Hello, World!")

… or …

    ~~~python
    def hello_world():
        print("Hello, World!")
    ~~~

Will output:

def hello_world():
    print("Hello, World!")

For inline code, use single backticks like this:

 This is some text, and this is `some_code`.

Will output:

This is some text, and this is some_code.