Search code examples
markdowndoxygen

pagebreak in markdown while creating pdf


I am creating a pdf of markdown text file using doxygen (1.8.6). Now I want to get page break at specific stage in markdown file, I used this link.

In the given link they have mentioned to use '>' for line break. But they haven't mentioned about page break. Yes I can use '>' for page break as well but I have to write this symbol 5 or more times on markdown text file and that makes markdown file in weird look. Is there any other ways to get page breaks in markdown files?


Solution

  • I encountered the same and solve it by inserting

    \pagebreak
    

    It's actually a LaTeX command, rather than a Markdown one.