Dimitry
Dimitry
Hello @shivakumars ! This actually is a bug. I've looked at it briefly and it seems to be caused by a single new-line in markdown to be treated as a...
It actually is not a bug but a requirement for editor - soft breaks must be rendered as new lines (no matter how they are going to be rendered). Let...
Hello @ntomasevic-vfy , First of all, I appreciate your effort. But let me just ask - why would you need a special setting for alpha when you can specify color...
It seems, @ntomasevic-vfy , that you describe a bug that should be fixed 😉 It is better to fix current implementation (to allow transparent color) then putting a temporary plaster...
Hello everyone who might be interested in this! I've been able to achieve the customization of inline parsing in my [library](https://github.com/noties/Markwon) recently. I won't say it is perfect but it...
Hello @pramodshri-tgsys , it seems there is some special handling of `AbsoluteSizeSpan`. Sometimes, if it is applied to just `new-line` character, the results might be strange. In your example, you...
Hello @Groot-2001, @tatavarthitarun , @c-b-h , there is a heading theme attribute you can use: ```kotlin val markwon = Markwon.builder(context) .usePlugin(object: AbstractMarkwonPlugin() { override fun configureTheme(builder: MarkwonTheme.Builder) { builder.headingBreakHeight(0) }...
It appears that `Ω` (defined as `\Omega` in LaTeX) symbol is not rendered by Android. It is defined in the `/jlatexmath/jlatexmath/src/main/assets/org/scilab/forge/jlatexmath/fonts/latin/jlm_cmr10.ttf` font and mapped to the `00AD` symbol. Other glyphs...
Possible workaround is to use text mode to render Omega symbol: ```latex \mbox{Ω} ``` Please note that this requires `jlatexmath-android-font-greek` dependency.
Hello @Meisolsson ! At first I thought those 2 issues are unreleated. As markdown file that you'd linked does not contain empty code blocks. Then I have found out that...