Skip to content

Instantly share code, notes, and snippets.

@benben
Created October 21, 2011 13:59
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 benben/1303922 to your computer and use it in GitHub Desktop.
Save benben/1303922 to your computer and use it in GitHub Desktop.
layout title date comments categories
post
test
2011-10-21 15:06
true

test post with äüß

doesn't work:

def ruby
# ä
end

works (just added a space after the ä):

def ruby
# ä 
end

works (no space after but indented one space):

def ruby
 # ä
end

works (space after but another comment before):

def ruby
# another comment
# ä
end

works:

def ruby
# ä ä
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment