Skip to content

Commit

Permalink
LUNT
Browse files Browse the repository at this point in the history
  • Loading branch information
Superlagg committed Jul 12, 2023
1 parent 7d7779e commit f0d890b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tgui/packages/tgui/interfaces/SecondWind.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,14 @@ const SecondWindInfoButton = (props, context) => {

const FormatSecondWindBody = (Text2Format) => {
const sanitizedText = sanitizeText(Text2Format);
const formattedText = marked(sanitizedText, { smartypants: true, gfm: true, tables: true, sanitize: false, breaks: true, smartLists: true });
const formattedText = marked(sanitizedText, {
smartypants: true,
gfm: true,
tables: true,
sanitize: false,
breaks: true,
smartLists: true
});
return { __html: formattedText };
};

Expand Down

0 comments on commit f0d890b

Please sign in to comment.