dmail00
dmail00
I wish that I found this issue when making a portable version of Mu. I instead went the route of making start.bat file which sets up some files and enviroment...
Another case that seems to be related. Here the unordered list tag is not generated and it is considered an ordered with paragraphs. ``` def test_lists() -> None: """Ordered followed...
@waylan Thanks for that info. Maybe there is a typo on that page > Whereas the default Markdown behavior would be to generate an unordered list. The code I posted...
Thanks for the information. I suppose this is a feature request then and I will have to continue using images generated by pygments.
I had a little play with the notes and lists. Included below is the an XML Pretty Print showing the difference between a note list created by Powerpoint and one...
Yes, you are are correct. I minimised the input to just look at ordered lists so the input is the following: ``` % List in notes % % ------------------------- ##...
There must be a reason, however I am not aware and maybe either of you could enlighten me. ```, and ``` all create paragraphs and pdf has an l_margin. Why...
Here is my hack to fix this and boy is it a hack :) in html._new_paragraph add a parameter with a default of None. In the method if the param...
Complicated yes, because there seems to be a conflict between the default value False and a False value being an unset value. I tried something similar earlier however it does...
Here is the same hack yet more confined to the _end_paragraph method and using @gmischler suggestion. Still ugly as sin, brittle and doesn't resolve the underlying issue. ``` self._paragraph =...