Skip to content

Commit

Permalink
TMP: entities
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Jul 9, 2023
1 parent 7e58477 commit db8b8bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/testdata/angle_bracket_test/golden.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and https://github.com/bazelbuild/stardoc/issues/137.
<b>HTML formatting</b> can be used in docstrings, just as in regular Markdown.
Literal angle brackets can be obtained by escaping them with a backslash, where
the backslash itself must be escaped for use in a Starlark docstring
(`\\<` becomes \<).
(`\\<` becomes \<), or by using HTML entities (`&lt;` becomes &lt;).
Angle brackets are also preserved in inline code blocks (`#include <vector>`).


Expand Down
2 changes: 1 addition & 1 deletion test/testdata/angle_bracket_test/input.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and https://github.com/bazelbuild/stardoc/issues/137.
<b>HTML formatting</b> can be used in docstrings, just as in regular Markdown.
Literal angle brackets can be obtained by escaping them with a backslash, where
the backslash itself must be escaped for use in a Starlark docstring
(`\\\\<` becomes \\<).
(`\\\\<` becomes \\<), or by using HTML entities (`&lt;` becomes &lt;).
Angle brackets are also preserved in inline code blocks (`#include <vector>`).
"""

Expand Down

0 comments on commit db8b8bb

Please sign in to comment.