1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

fixed image and code appearance

This commit is contained in:
Fedor Katurov 2021-02-24 15:54:14 +07:00
parent c383356a4c
commit 0c7ed6de99
4 changed files with 14 additions and 5 deletions

View file

@ -122,7 +122,7 @@ export const splitCommentByBlocks = (text: string): ICommentBlock[] =>
}));
export const formatCommentText = (author: string, text: string): ICommentBlock[] =>
text ? splitCommentByBlocks(formatText(text)) : null;
text ? splitCommentByBlocks(text) : null;
export const formatCellText = (text: string): string => formatTextParagraphs(text);