lowercasename / docdown

A menu bar app to convert Markdown into academia-ready Word documents
GNU General Public License v3.0
94 stars 5 forks source link

DocDown inserting hidden bookmarks in document? #50

Closed skotzko closed 7 months ago

skotzko commented 7 months ago

I noticed that DocDown is creating what I think are Word bookmarks (these grey brackets) around all the sections in the document. I'm not sure how to get rid of them. They aren't in my markdown file.

Screen Shot 2024-02-12 at 17 15 34
lowercasename commented 7 months ago

Looks like this is a default Pandoc feature called auto_identifiers, although it isn't immediately apparent why it affects Word output documents. You can disable it easily, though - open the Preferences window, and at the bottom in 'Other options', update the Markdown extensions line to read +smart+escaped_line_breaks-auto_identifiers.

Screenshot 2024-02-13 at 14 10 14
skotzko commented 7 months ago

Aha! That worked, thank you