This app allows users to convert Markdown text into HTML and preview the HTML content with customizable font size and font family. Users can also generate and download the corresponding PDF file.
Ensure you have the required dependencies installed. You can install them via pip:
pip install streamlit markdown2 pdfkit
Additionally, make sure you have wkhtmltopdf
installed. You can download it from the official website.
-
Launch the App: Run the Streamlit app by executing the following command in your terminal:
streamlit run markdown_to_pdf_app.py
-
Input Markdown Text: You can either upload a Markdown file using the file uploader in the sidebar or directly enter Markdown text into the text area provided.
-
Preview HTML: The app will convert the Markdown text to HTML and display the HTML content in the right panel. You can customize the font size and font family using the sliders and select box provided.
-
Generate PDF: After customizing the HTML preview, click the "Download PDF" button to generate and download the corresponding PDF file. The PDF will be generated with the selected font size and font family.
- Streamlit: Python library for building interactive web apps.
- markdown2: Python library for converting Markdown to HTML.
- pdfkit: Python library for generating PDF files from HTML.
- Font Support: The app supports various font families such as Arial, Helvetica, Times New Roman, Courier New, and Verdana.
- PDF Generation: PDF files are generated using
wkhtmltopdf
, so make sure it is properly installed on your system. - Error Handling: The app provides error messages in case of any issues during HTML to PDF conversion.
If you encounter any issues or have any questions, please feel free to open an issue on GitHub.