markdown-redcarpet.tmbundle
markdown-redcarpet.tmbundle copied to clipboard
TextMate support for GitHub flavored Markdown
``` $ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby --version -bash: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby: No such file or directory ``` ``` $ /usr/bin/env ruby18 --version env: ruby18: No such file or directory ``` Replacing these with `/usr/bin/env ruby`...
What do you think about adding support for LaTeX equations like this? To render this, I've copied these lines (https://github.com/textmate/markdown.tmbundle/blob/master/Commands/Markdown%20preview.plist#L30L45) ``` ruby if ENV["TM_MARKDOWN_MATHJAX"].to_i > 0 puts "<script type=\"text/x-mathjax-config\"> MathJax.Hub.Config({...
Rather than highlighting the last backtick (“`”), I was seeing the preceding character highlighted instead. This corrects the issue. (I used ^⇧P to determine that the `captures` was the issue.)
commit for [support-yaml-front-matter](https://github.com/streeter/markdown-redcarpet.tmbundle/pull/16) has broken language support for markdown horizontal rules (separator). ``` separator = { name = 'meta.separator.markdown'; match = '(^|\G)[ ]{,3}([-*_])([ ]{,2}\2){2,}[ \t]*$\n?'; }; yaml_frontmatter = { name...
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/gem: command not found in Yosemite
I have been using Markdown Redcarpet to edit R markdown files (.Rmd). A common task is to write a R code like ```{r myCode} a
it can not used base on yosemite 10.10.3, > > oliver-MacBook-Pro:Bundles oliver$ ruby -v > > ruby 2.0.0p481 (2014-05-08 revision 45883) [universal.x86_64-darwin14]
Below are the before and after. Notice how the after the fonts get way smaller (not just the markdown but also the code edit window). This is on a fresh...
In `Support/bin/redcarpet.rb` ":no_intraemphasis" should be replaced with ":no_intra_emphasis". This fixes the rendering of inline underscores when previewing. The other thing I'd like to see is how to make that formatting...
Hi, Just some maintenance for supporting R. - Fix r fenced block's usability when working with `rmarkdown` - Made a command more general for general use with rmarkdown http://rmarkdown.rstudio.com/ instead...