Converter of Markdown to PDF.
Why another Markdown to PDF converter? Because I want to feed root Markdown file to the application and get complete PDF with all subpages that linked in root file. I tried to find such ready tool, but my search was unsuccessful.
If you will find a bug of rendering, please, try to localize the issue in
short Markdown and reproduce with fonts in tests/fonts
folder (Droid Serif
for text
and Courier New
for code). And post the issue here...
After clone update submodules with the next command:
git submodule update --init --recursive
To build this application first of all install dependencies of PoDoFo
- freetype
- libjpeg
- libpng
- zlib
On UNIX you also need
- fontconfig
Also ImageMagick6 is required.
With these dependencies installed just open CMakeLists.txt in QtCreator and run build.
You can use Conan to install dependencies, only ImageMagick should be installed by hands, as in
Conan ImageMagick available version is 7 only, and not all platforms are supported. And
Fontconfig should be installed in system, as using Fontconfig from Conan leads to ugly UI. In case
using Conan as dependencies manager define MDPDF_USE_CONAN
to CMake. Good luck!
And one more thing - don't use jom
.
- Open
CMakeLists.txt
withQtCreator
CMake
process may fail- Go into build directory and there launch
conan install <path to sources>
- Run
CMake
in theQtCreator
- And voila, run build and everything should go without any problem.
In this stack you can have problems only with ImageMagick
, that I don't install with
Conan
, as there is no build possible on Windows platform with Conan
. So be sure you installed
ImageMagick 6
and installation is available through the PATH
environment, this should
be enough to detect ImageMagick
. Good luck.
Good example of work of this application is PDF version of my book.
-
I do not render HTML tags in Markdown.
-
Some LaTeX Math expressions can be wrongly rendered. I use very good library
JKQtPlotter
to render LaTeX Math, and not everything is implemented there. But most common math things are done. -
I don't support Chinese, as they don't use spaces. I don't know theirs rules, to adapt algorithms.
-
I don't support right-to-left languages. I don't know theirs rules too.
If you are one from these groups of people - you are welcome to make PRs to adapt this application to your language.