Markdown to PDF Converter
Upload .md files and get professionally styled PDFs using the UALR CORE template system.
Requires a Google account. Your files are processed securely and never stored.
No PDF yet
Convert a Markdown file to preview it here
menu_book Markdown Formatting Guide
Your Markdown file is converted to a branded UALR CORE PDF. Standard Markdown works out of the box, but the features below unlock the full template.
download Download TemplateYAML Frontmatter (Required)
Start your file with a YAML block to set the title page fields. Only title is required — the rest are optional.
---
title: "Your Document Title"
subtitle: "Optional Subtitle"
author: "Your Name"
organization: "UA Little Rock CORE"
date: "2026-01-01"
---
Headings
Use # through #### for section hierarchy. Headings are styled with ocean-blue accents and appear in the Table of Contents when enabled.
# Section
## Subsection
### Sub-subsection
#### Paragraph Heading
Callout Boxes
Wrap content in fenced divs to create styled callout boxes. Four types are available:
::: info
This is an info callout.
:::
::: warning
This is a warning callout.
:::
::: error
This is an error/alert callout.
:::
::: success
This is a success callout.
:::
Tables
Standard Markdown tables are automatically styled with ocean-blue headers and alternating row colors.
| Column A | Column B |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Code Blocks
Fenced code blocks get dark-themed syntax highlighting. Specify the language for proper highlighting.
```python
def hello():
print("Hello, World!")
```
Supported languages include Python, JavaScript, Bash, Java, C, Go, Rust, SQL, HTML, CSS, and many more.
Blockquotes
Blockquotes render with an ocean-blue left border and a subtle background.
> This is a blockquote. It can span
> multiple lines.
Horizontal Rules
A horizontal rule (---) renders as a pumpkin-orange divider line.
---
Images
Images are automatically bounded to fit the page. Use standard Markdown image syntax.

Images must be accessible at the path specified. For uploaded Markdown, embed images as URLs or include them at the referenced relative path.
Other Formatting
- Bold:
**bold text** - Italic:
*italic text* - Inline code:
`code`— rendered with a gray background - Links:
[text](url)— styled in ocean-blue - Bullet lists:
-or* - Numbered lists:
1.,2., etc. - Math:
$inline$or$$display$$(LaTeX math)