-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No support for Bold Italic #75
Comments
I tried the example and indeed it works there. The problem in my case is apparently the custom font we use in our app... It has each of its variants (e.g. bold italic) in a separate file 🤦♂️. So what I'm really missing here is a way to customize the bold italic styling like I can do with just italic:
I tried to work around this by using So the suggested solution is to provide |
Hey mhoeller-clue, I've looked a bit further into the issue, and understand your issue when you have a custom font in a separate file for bold italic as combination. Currently the solution as Jim showed is using UIFontDescriptor.SymbolicTraits, looking for a font with the traits:
But that won't work in your case with your custom font where each trait has it's own file. To be able to support your use-case we will have to look a bit further into the core. |
Currently the library does not support inline bold italic text, denoted by
***text***
. I've seen aBoldItalicMarkDownItem
class, but full support does not seem to have been added yet.The text was updated successfully, but these errors were encountered: