Skip to content

Commit

Permalink
fix: overload set overview is unescaped
Browse files Browse the repository at this point in the history
  • Loading branch information
alandefreitas committed Nov 26, 2024
1 parent 9312ffb commit 826295c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

{{#if symbol.members.[0].doc.brief}}

{{symbol.members.[0].doc.brief}}
{{{symbol.members.[0].doc.brief}}}

{{/if}}

Expand All @@ -23,7 +23,7 @@
{{#if symbol.members.[0].doc.description}}
=={{#unless @root.config.multipage}}={{/unless}} Description
{{symbol.members.[0].doc.description}}
{{{symbol.members.[0].doc.description}}}
{{/if}}
{{#with (flattenUnique symbol.members "doc.exceptions" "exception") as |allExceptions|}}
Expand All @@ -35,7 +35,7 @@
{{#each allExceptions as |exception|}}
| `{{exception.exception}}`
| {{exception.description}}
| {{{exception.description}}}
{{/each}}
|===
{{/if}}
Expand All @@ -44,7 +44,7 @@
{{#if symbol.members.[0].doc.returns}}
=={{#unless @root.config.multipage}}={{/unless}} Return Value
{{symbol.members.[0].doc.returns}}
{{{symbol.members.[0].doc.returns}}}
{{/if}}
Expand All @@ -67,7 +67,7 @@
=={{#unless @root.config.multipage}}={{/unless}} Preconditions
{{#each symbol.members.[0].doc.preconditions}}
{{.}}
{{{.}}}
{{/each}}
{{/if}}
Expand All @@ -76,7 +76,7 @@
=={{#unless @root.config.multipage}}={{/unless}} Postconditions
{{#each symbol.members.[0].doc.postconditions}}
{{.}}
{{{.}}}
{{/each}}
{{/if}}
Expand All @@ -85,7 +85,7 @@
=={{#unless @root.config.multipage}}={{/unless}} See Also
{{#each symbol.members.[0].doc.see}}
{{.}}
{{{.}}}
{{/each}}
{{/if}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

{{#each symbol.members as |member|}}

<p>{{member.doc.brief}}</p>
<p>{{{member.doc.brief}}}</p>

<pre><code class="language-cpp">{{> (concat 'signature' '/' (lookup member 'kind')) symbol=member}};</code></pre>
<a href="{{{relativize member.url}}}"><em>» more...</em></a>
Expand Down

0 comments on commit 826295c

Please sign in to comment.