Added workaround for strong and emphatic texts.
This commit is contained in:
parent
f20e7b5516
commit
fa0d368d7e
1 changed files with 3 additions and 1 deletions
4
smu.c
4
smu.c
|
@ -74,10 +74,12 @@ struct Tag underline[] = {
|
||||||
struct Tag surround[] = {
|
struct Tag surround[] = {
|
||||||
{ "``", 0, "<code>", "</code>" },
|
{ "``", 0, "<code>", "</code>" },
|
||||||
{ "`", 0, "<code>", "</code>" },
|
{ "`", 0, "<code>", "</code>" },
|
||||||
|
{ "___", 1, "<strong><em>", "</em></strong>" },
|
||||||
|
{ "***", 1, "<strong><em>", "</em></strong>" },
|
||||||
{ "__", 1, "<strong>", "</strong>" },
|
{ "__", 1, "<strong>", "</strong>" },
|
||||||
{ "**", 1, "<strong>", "</strong>" },
|
{ "**", 1, "<strong>", "</strong>" },
|
||||||
{ "*", 1, "<em>", "</em>" },
|
|
||||||
{ "_", 1, "<em>", "</em>" },
|
{ "_", 1, "<em>", "</em>" },
|
||||||
|
{ "*", 1, "<em>", "</em>" },
|
||||||
};
|
};
|
||||||
char * replace[][2] = {
|
char * replace[][2] = {
|
||||||
{ "\\\\", "\\" },
|
{ "\\\\", "\\" },
|
||||||
|
|
Loading…
Add table
Reference in a new issue