Skip to content

Commit

Permalink
Fix HTML escaping in system arguments docs (#2413)
Browse files Browse the repository at this point in the history
  • Loading branch information
camertron authored Dec 1, 2023
1 parent e7c9a6c commit 806c515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/primer/yard/lookbook_pages_backend.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ def generate_system_args_docs
path, <<~ERB
#{YAML.dump(frontmatter)}
---
<%= @page.data[:description_md] %>
<%= @page.data[:args_md] %>
<%= @page.data[:description_md].html_safe %>
<%= @page.data[:args_md].html_safe %>
ERB
)
end
Expand Down

0 comments on commit 806c515

Please sign in to comment.