Skip to content

Instantly share code, notes, and snippets.

@norman
Created October 19, 2010 17:04
Show Gist options
  • Select an option

  • Save norman/634576 to your computer and use it in GitHub Desktop.

Select an option

Save norman/634576 to your computer and use it in GitHub Desktop.
!!!
html
head
body
h1#logo {style: "use a stylesheet please"}
< This is inline content
and can be on multiple lines though I'm
not sure why you'd want to do that
p
> This is block content
and can also be multiple lines if you want it to be
p
= "this is evaluated, printed code"
span
- if locale == "en" then
<= greeting.en
- else
<= greeting.es
:markdown
## this is run through a markdown filter
@norman
Copy link
Copy Markdown
Author

norman commented Oct 19, 2010

">" gives you:

<p>
  hello
</p>

"<" gives you:

<p>hello</p>

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