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 ce75208 commit 2f50c94Copy full SHA for 2f50c94
src/dvc_render/base.py
@@ -48,7 +48,7 @@ def SCRIPTS(self): # pylint: disable=missing-function-docstring
48
def remove_special_chars(string: str) -> str:
49
"Ensure string is valid HTML id."
50
return string.translate(
51
- {ord(c): "_" for c in r"!@#$%^&*()[]{};,<>?\/:.|`~=_+"}
+ {ord(c): "_" for c in r"!@#$%^&*()[]{};,<>?\/:.|`~=_+ "}
52
)
53
54
def generate_html(self, html_path=None) -> str:
0 commit comments