Skip to content

Commit

Permalink
feat: restores prior markdown rendering behavior for bold/italic
Browse files Browse the repository at this point in the history
  • Loading branch information
Fortyseven committed May 3, 2024
1 parent 749a382 commit 9f6545c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/TabPages/Conversation/Chat/Timeline.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,26 +79,26 @@
font-weight: bold;
&::before {
content: '*';
content: '**';
font-weight: normal;
opacity: 0.65;
}
&::after {
content: '*';
content: '**';
font-weight: normal;
opacity: 0.65;
}
}
em {
&::before {
content: '_';
content: '*';
font-weight: normal;
opacity: 0.65;
}
&::after {
content: '_';
content: '*';
font-weight: normal;
opacity: 0.65;
}
Expand Down

0 comments on commit 9f6545c

Please sign in to comment.