You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wondering if I can pass through all backticks without them getting backslash-escaped as currently happens. These are bindings being generated for various languages (C# being merely one of many) from a .d.ts IDL. So its source doc-comments are reused for all generated code in the appropriate target language syntax and these however do contain "code" formatting with backticks already, also because the major doc scenarios for the audience will be VS-Code hover-tips and markdown files, those generated doc-comments are further slightly augmented by backticks for method param names etc. (you can see those incorporate inside the <summary> — with the benefit of them showing up in VSCode hover-tips, unlike <param> which are still also generated)
Of course I could add a post-build sed step but... 😄
The text was updated successfully, but these errors were encountered:
Loving this, here's my Vsxmd-generated result
.md
: https://github.com/metaleap/vscode-appz/tree/master/libs/cs#readmeWondering if I can pass through all backticks without them getting backslash-escaped as currently happens. These are bindings being generated for various languages (C# being merely one of many) from a
.d.ts
IDL. So its source doc-comments are reused for all generated code in the appropriate target language syntax and these however do contain "code" formatting with backticks already, also because the major doc scenarios for the audience will be VS-Code hover-tips and markdown files, those generated doc-comments are further slightly augmented by backticks for method param names etc. (you can see those incorporate inside the<summary>
— with the benefit of them showing up in VSCode hover-tips, unlike<param>
which are still also generated)Of course I could add a post-build
sed
step but... 😄The text was updated successfully, but these errors were encountered: