Cristian Tudorache

Results 7 comments of Cristian Tudorache

Are you in favor of writing an Android app specifically for this purpose? This way you'd be able to log into your account and simply load your projects (maybe even...

We could use [pyWinAPI](https://github.com/kdschlosser/pyWinAPI) (specifically [IRawElementProviderSimple](https://github.com/kdschlosser/pyWinAPI/blob/master/um/uiautomationcore_h.py#L1601)) for implementing automation features on Windows; on Linux, there's [PyGObject](https://pygobject.readthedocs.io/en/latest/index.html) with [Atk.GObjectAccessible](https://lazka.github.io/pgi-docs/#Atk-1.0/classes/GObjectAccessible.html) and [Atk.ObjectFactory](https://lazka.github.io/pgi-docs/#Atk-1.0/classes/ObjectFactory.html). I should have a working prototype within a week, starting...

I made a quick [fix](); still working on it

the fix is at an early stage - the table gets rendered all right, but only on the page where it starts

I've made some [progess](https://github.com/denim2x/pdfmake/commit/e051181895d254ffebb761c11ec8c012b4a81ab3) ![screenshot](https://user-images.githubusercontent.com/8561801/64925541-a4e86400-d7fa-11e9-9d80-0aa703ca9ce9.png)

Next I'll ensure that paragraphs exceeding page height shall be divided into smaller fragments

For this to work it'd be better if `pdfmake` was based on coroutines/*message queues*, at least the modules `TableProcessor` and `PageElementWriter` (which contains `beginUnbreakableBlock()`); that means a lot more working...