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 4b4bf5a commit 4a073eeCopy full SHA for 4a073ee
guidata/dataset/dataitems.py
@@ -508,7 +508,9 @@ def get_auto_help(self, instance: DataSet) -> str:
508
auto_help += ", " + _("not empty")
509
regexp = self.get_prop_value("data", instance, "regexp")
510
if regexp:
511
- auto_help += ", " + _("regexp:") + " " + regexp
+ # Wrap regexp in backticks to prevent Sphinx from interpreting
512
+ # it as a reference
513
+ auto_help += ", " + _("regexp:") + f" ``{regexp}``"
514
return auto_help
515
516
def check_value(self, value: str, raise_exception: bool = False) -> bool:
0 commit comments