Questions tagged [gfm-mode]
3 questions
16
votes
1 answer
Github-flavored markdown mode: syntax highlight code blocks
For example, if I have a markdown file with the following:
###This is my markdown file
here is some text.
here is my code block:
``` js
var accountdown = require('accountdown');
var level = require('level');
var db = level('/tmp/users.db');
var…

modulitos
- 2,432
- 1
- 18
- 36
2
votes
0 answers
Is it possible to disable font faces in Markdown for tables only?
I really like the markdown mode in Emacs (markdown-mode.el v2.4-dev) but when I have monospace in table cells the columns get out of alignment. Not only that, but at times the rendering kind of jerks around. I'd prefer if it just didn't do any…

AndyJ
- 349
- 2
- 9
0
votes
1 answer
Have markdown-mode render checkboxes as in GFM
How can I make this:
- [ ] check
- [x] box
render checkboxes, like in GFM? I think the output is something like
check
box
.
I don't want to use org-mode. I know there is…

Martin
- 115
- 5