We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The highlighting does not always work when tokens/characters are exchanged. Note: https://dlang.org/spec/ddoc.html#embedded_comments
```
---
````
///
/++
+
+/
/++ + Our function. + + Example: + --- + import std.stdio; + + void foo() + { + writeln("foo!"); /* print the string */ + } + --- +/
Expected result:
Modified results:
The text was updated successfully, but these errors were encountered:
fix ``` in docs not being formatted as code
eae5581
See Pure-D/code-d#441
1 is fixed in serve-d now, (nightly available in 24h) 2 and 3 need updates to DCD and will take a while longer to be released.
Sorry, something went wrong.
No branches or pull requests
The highlighting does not always work when tokens/characters are exchanged.
Note: https://dlang.org/spec/ddoc.html#embedded_comments
```
is used instead of---
, even though````
does.///
instead of/++
,+
,+/
breaks the spacing of the embeded coding preview. (https://dlang.org/spec/ddoc.html#lexical)Expected result:
Modified results:
---
with```
/++
,+
,+/
with///
The text was updated successfully, but these errors were encountered: