2
1
Fork 0

typegen: insert newlines after callouts to avoid breaking new site

This commit is contained in:
outfoxxed 2024-11-09 00:11:49 -08:00
parent 593634eb27
commit 34f0819a76
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
2 changed files with 19 additions and 6 deletions

View file

@ -648,8 +648,8 @@ fn parse_details(comment: Comment) -> String {
module: comment.module,
};
crate::reformat::GfmQuoteBlocks::reformat(&reformat_ctx, &mut str);
crate::reformat::TypeLinks::reformat(&reformat_ctx, &mut str);
crate::reformat::GfmQuoteBlocks::new().reformat(&reformat_ctx, &mut str);
crate::reformat::TypeLinks.reformat(&reformat_ctx, &mut str);
str
}