Skip to content

Commit

Permalink
Re-introduce removal of starting "
Browse files Browse the repository at this point in the history
  • Loading branch information
domna committed Nov 10, 2023
1 parent 71214e7 commit b75592e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev_tools/nyaml2nxdl/nyaml2nxdl_forward_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def handle_each_part_doc(text):
Formated text
"""

clean_txt = text.strip()
clean_txt = text.strip().strip('"')

if not clean_txt.startswith("xref:"):
return format_nxdl_doc(check_for_mapping_char_other(clean_txt)).strip()
Expand Down

0 comments on commit b75592e

Please sign in to comment.