We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e33a424 commit 3ff7db2Copy full SHA for 3ff7db2
gcp/website/frontend_handlers.py
@@ -855,8 +855,8 @@ def markdown(text):
855
# space rather than %2B
856
# See: https://github.com/trentm/python-markdown2/issues/621
857
md = _URL_MARKDOWN_REPLACER.sub(r'\1/+/\3', md)
858
- # Remove empty anchor tags that cause visual artifacts in rendered markdown.
859
- # See: https://github.com/google/osv.dev/issues/<issue-number>
+ # Removes empty anchor tags that cause visual artifacts in rendered markdown
+ # See: https://github.com/google/osv.dev/issues/4237
860
md = _ANCHOR_TAG_REPLACER.sub('', md)
861
862
return md
0 commit comments