Closed
Description
Using asterisks or rather the bold/italic markdown syntax results in fake displayed fonts, because the real font styles are missing.
I recommend implementing the missing styles like this:
@font-face {
font-family: ComputerModern;
src: url('ComputerModern-Regular.otf') format('otf');
font-weight: 400;
font-style: normal;
font-stretch: normal;
}
@font-face {
font-family: ComputerModern;
src: url('ComputerModern-RegularItalic.otf') format('otf');
font-weight: 400;
font-style: italic;
font-stretch: normal;
}
@font-face {
font-family: ComputerModern;
src: url('ComputerModern-Bold.otf') format('otf');
font-weight: 700;
font-style: normal;
font-stretch: normal;
}
@font-face {
font-family: ComputerModern;
src: url('ComputerModern-BoldItalic.otf') format('otf');
font-weight: 700;
font-style: italic;
font-stretch: normal;
}
Metadata
Metadata
Assignees
Labels
No labels