diff --git a/docs-generator.py b/docs-generator.py index 23d5ef3..37c1a43 100644 --- a/docs-generator.py +++ b/docs-generator.py @@ -17,7 +17,7 @@ def add_code_tags(text): # swaps every pair of ` ` for \code{} - text = text.replace("_", "\\_") # need to escape underscores when inside a command + #text = text.replace("_", "\\_") # need to escape underscores when inside a command while text.find("`") != -1: text = text.replace("`", "\\code{", 1) text = text.replace("`", "}", 1)