Skip to content

Instantly share code, notes, and snippets.

@bluegraybox
Last active August 29, 2015 14:17
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 bluegraybox/c83ee7bdd9b99fb82c17 to your computer and use it in GitHub Desktop.
Save bluegraybox/c83ee7bdd9b99fb82c17 to your computer and use it in GitHub Desktop.
Asciidoc Sandbox

Demo Page

Summary / Key Features

  • single quotes

  • single asterix

  • double asterix

  • superscript with caret

  • subscript with tilde

Goals

Ordered lists
  1. point one

  2. point two

    1. sub point

  3. point three

    • nested

    • unordered

    • points

  4. point four

Challenges

definition

definition text

Learnings

status = (function () {
    var status = 'GREEN';
    var valid = ['GREEN', 'YELLOW', 'RED'];
    var s = function (value) {
        if (valid.indexOf(value) > -1)
        status = value;
    }
    var g = function () {
        return status;
    }
    return {set: s, get: g};
    }
)();

Next Steps

Details

Technologies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment