no-stack-dub-sack / apexdox-vs-code

A lightweight VS Code extension that makes documenting your Salesforce Apex files an easy, integrated experience.
Other
49 stars 7 forks source link

Bold and Italic Markdown Support #14

Closed no-stack-dub-sack closed 2 years ago

no-stack-dub-sack commented 4 years ago

Transform __this__ to this and _this_ to this in documentation comments (using asterisks style markdown would be potentially and needlessly complex due to the matching of doc comments which begin with **)

sudhird7 commented 2 years ago

Transform __this__ to this and _this_ to this in documentation comments (using asterisks style markdown would be potentially and needlessly complex due to the matching of doc comments which begin with **)

Since the <br> tag is already supported, what would the lift be to support additional limited HTML elements like <em>, <b>, and <strong>?

cemerson commented 2 years ago

FWIW I just added a pull request on a similar note. I went with HTML tags vs markdown (in hindsight I kind of like Markdown better) but see the pull request (or the VSIS in my fork) if you want to check it out. Just added bold, bullets and indented lists for now.

no-stack-dub-sack commented 2 years ago

@sudhird7 I agree, and will be accepting @cemerson's PR to include these features.

sudhird7 commented 2 years ago

Thanks for the work, @cemerson and @no-stack-dub-sack !! Appreciate all the hard work. I hope one day I can contribute more.