markdown-mode icon indicating copy to clipboard operation
markdown-mode copied to clipboard

Emacs Markdown Mode

Results 146 markdown-mode issues
Sort by recently updated
recently updated
newest added

The integration between the latex fontification/highlighting and markdown is *consistently* really buggy, and never works right. But if I turn off math support, then underscores in my latex get picked...

Markdown is preferable to write in. Org-mode is preferable for task management due to its excellent TODOs block format (and friends like org-agenda). Having markdown mode be able to parse...

## Expected Behavior I build a table using non-breaking spaces after Name to force the 'Name' column width : ``` | Date | Name                      | | ---------- |-------------------------- | |...

## Expected Behavior After writing an .org file in orgmode, I anticipated the export by `C-c C-e m m` would fence snippets of code including a keyword to label the...

## Expected Behavior (gfm-mode) \```typescript const result = 1 + 1; console.log(result); \``` to be rendered as (gfm-view-mode): ![image](https://github.com/jrblevin/markdown-mode/assets/16169950/2b5a6639-ebce-47ab-b3d3-94d02a897d21) ## Actual Behavior (gfm-mode) \```typescript const result = 1 + 1;...

## Expected Behavior This is a table without COMBINING LONG STROKE OVERLAY (0336): ``` | X | |---| | X | ``` And this is a table with COMBINING LONG...

i often end up converting links from: ``` [foo](http://example.com) ``` to: ``` [foo][] [foo]: http://example.com ``` The rationale is that writing the former is more natural, but looks more messy,...

## Expected Behavior When using M-q `fill-paragraph` in a block of comments, comment markers should reframe so the beginnings and endings of lines are marked with comments. For example: ```...

The strike-through face appears in a different size than the default font in **markdown-view-mode**. After customizing markdown-strike-through-face with the following code in my theme.el: (custom-theme-set-faces 'erik '(markdown-strike-through-face ((t (:strike-through "#fbffb1"))))...

Emacs-style "grid tables" [are well supported by Pandoc](https://github.com/jgm/pandoc/wiki/Pandoc-vs-Multimarkdown). However markdown mode doesn't like them that much. ## Expected Behavior Grid table above are rendered wholly in `markdown-table-face` and are properly...