Georg Mischler
Georg Mischler
I've just been looking through #913 again and it seems that the good idea of caching glyph IDs could be expanded on further. At the moment, every time a specific...
Automating tedious stuff as much as possible is certainly desirable. The optimal place to automatically format the code seems to be as a local check-in hook. This makes sure that...
Another interesting suggestion, @tfenne! The current border handling for tables is indeed not particularly flexible, since the available combinations of border lines are essentially hardcoded. As another consequence, they will...
> I think this was implemented by @gmischler in #520: #520 implements the general ability to render subscript and superscript text, as well as the `` and `` tags for...
> As far as I can see `FPDF.multi_cell()` has no ability to render text with mixed vpos. One idea is to expose something like `_render_styled_text_line()` on `FPDF` that takes a...
Thanks for reporting this, and welcome to fpdf2, @exiva ! Well, the documentation doesn't promise that our markup parser would honor backslash escapes, so technically this isn't a bug... :wink:...
Implemented in #1224
> Escaping double underscores in Markdown should be done this way: > `\_\_Ipsum\_\_` In "standard" markdown (including commonmark), escaping individual marker characters is necessary because both a single character as...
> 1. we aim to progressively get closer to the standard CommonMark spec, which is why I find it problematic that `fpdf2` currently renders `\\\\__Ipsum\\\\__` the way it does, as...
>> So I'm not really sure of the path forward regarding Markdown support... Ah, so I was overinterpreting your statements back then. Sorry for that. All the same, making our...