Skip to content

Commit

Permalink
pass the check for pipe presence in details
Browse files Browse the repository at this point in the history
the docs build fine and the table renders fine too
  • Loading branch information
martenson committed May 22, 2018
1 parent a00bd8b commit 9a84053
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/parse_gx_xsd.py
Expand Up @@ -128,7 +128,8 @@ def _build_attributes_table(tag, attributes, hide_attributes=False, attribute_na

use = attribute.attrib.get("use", "optional") == "required"
if "|" in details:
details.replace("|", "\|")
# This seems to work fine for now, but potentially can cause problems.
pass
details = details.replace("\n", " ").strip()
best_practices = _get_bp_link(annotation_el)
if best_practices:
Expand Down

0 comments on commit 9a84053

Please sign in to comment.