UnquietCode / martek

markdown to latex renderer
0 stars 0 forks source link

include issue number and issue title in generated markdown #6

Closed UnquietCode closed 3 years ago

UnquietCode commented 3 years ago

In addition to the issue description, generate markdown for the issue number and title. Use an n-dash ( – ) rather than a hyphen.

Example markdown:

# #6 – Issue Title
Issue Description

which renders as:

⁠6 – Issue Title

Issue description...

iceplant commented 3 years ago

The dashes look the same to me in VSCode. I copied the unicode symbol and then did a regex to replace en-dash with '--' and 'em-dash' with '---' (the respective latex keys for them).