Tim Schoenheider
Tim Schoenheider
Unfortunately it's under "Ideas for Domain-Specific Properties". IntelliJ Idea actually implements `continuation_indent_size` but don't see them implementing the 'Number of imports ..' idea from a [quick search](https://github.com/JetBrains/intellij-community/search?utf8=%E2%9C%93&q=following+EditorConfig&type=Code). It should probably...
This feature makes sense to me 👍. Anyone is free to work on the issue and I'll merge any PRs. Otherwise I will be rather slow to add it.
pdf-builder uses apache pdfbox under-the-hood, and let's you use any PDFont from apache pdfbox You might have better luck searching for how to handle encoding with PDFont in apache pdfbox,...
@darktimes I added a way to override the font in https://github.com/timrs2998/pdf-builder/commit/0a42fbac7b76f148fc20c9c6fec41ddcfdff02c0#diff-e2ec79f2bc4f5018a8a8729a91af5e6f315441d255ece8c38cbb6eda8439e92b version 2.1.0. Let me know if that helps otherwise I may still be confused on what needs to be...
Since JCenter is deprecated I switched to GitHub packages for lack of a better solution. Unfortunately it requires authentication to download packages. I didn't document this in the README, and...
Thanks! This looks like a duplicate of https://github.com/timrs2998/pdf-builder/issues/9. There's a bug with tables where nothing can go below the table because the calculated height of the table is incorrect. As...
No, this was not implemented. Inside Document.kt there is a placeholder "footerFactor" with some notes but it's currently unused.
The project is built for the JVM, and Android VM is slightly different. Android does not have the java.awt package, which [is required](https://github.com/apache/pdfbox/search?q=awt&unscoped_q=awt) by the [Apache pdfbox dependency](https://github.com/timrs2998/pdf-builder/blob/master/build.gradle.kts#L39). From the...