Skip to content

Instantly share code, notes, and snippets.

@bobrocke
Last active November 15, 2015 16:31
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 bobrocke/7ae20b962ba77d93d985 to your computer and use it in GitHub Desktop.
Save bobrocke/7ae20b962ba77d93d985 to your computer and use it in GitHub Desktop.
TextMate Markdown insertion
{ patterns = (
{ name = 'source.yaml.front-matter';
begin = '\A-{3}';
end = '-{3}';
patterns = ( { include = 'source.yaml'; } );
},
{ name = 'text.html.markdown.classes';
begin = '\{';
end = '\}';
},
{ name = 'markup.raw.block.markdown';
begin = '^`{3}';
end = '^`{3}';
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment