Skip to content

Commit

Permalink
Re-add separator at required indicator in MD
Browse files Browse the repository at this point in the history
  • Loading branch information
k-rabe committed Feb 9, 2025
1 parent 7208bcb commit 651b4b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
{% filter md_heading(depth + 1, html_id, True) -%}
{%- filter replace('\n', '') -%}
{%- if not skip_required and sub_property.property_name -%}
{{ "[Required]" if sub_property.is_required_property else "[Optional]" -}}
{{ "[Required] " if sub_property.is_required_property else "[Optional] " -}}
{%- endif -%}
{%- if sub_property is deprecated -%}~~ {%- endif -%}
{%- if sub_property is deprecated -%}~~ {%- endif -%}
{%- if sub_property.is_pattern_property %}Pattern {% endif %}Property {% with schema=sub_property %}{%- include "breadcrumbs.md" %}{% endwith %}
{%- if sub_property is deprecated -%}~~{%- endif -%}
{%- endfilter %}
Expand Down

0 comments on commit 651b4b2

Please sign in to comment.