Q.What is GitHub Flavored Markdown (GFM)?
GFM is a specific version of Markdown used by GitHub that adds support for tables, task lists, and automatic linking of URLs.
Q.Can I use HTML inside Markdown?
Yes. Most Markdown parsers allow you to include raw HTML tags for features not supported by standard markdown syntax.
Q.How do I add a line break without a new paragraph?
End a line with two or more spaces before pressing enter, or use the <br> tag for a forced line break.
Q.Does this tool support math equations?
Currently, we focus on standard GFM. LaTeX or MathJax support for equations is a highly requested feature for future updates.
Q.Is there a limit to document length?
Our tool can handle very large markdown files, but browser performance may slow down with documents exceeding 50,000 words.
Q.How do I create a table of contents?
Markdown doesn't have a built-in "TOC" tag. Most developers create it manually using anchor links like [Section Name](#section-anchor).
Q.Can I export my preview as a PDF?
Currently, you can use your browser’s "Print to PDF" feature while viewing the preview pane for a clean export.
Q.Why is my image not showing in the preview?
Markdown requires a valid absolute or relative URL. If the image is hosted locally on your PC, the browser may block it for security.
Q.What is the "CommonMark" standard?
CommonMark is a highly specified and stable version of Markdown that aims to eliminate ambiguities in the original syntax.
Q.Does this tool support emojis?
Yes! You can use standard emoji shortcodes or paste emojis directly into the editor pane.
Q.Can I collaborate with others on this tool?
This is a local tool. To collaborate, you should copy your markdown and share it via a version control system like GitHub.
Q.Is my data safe here?
Yes. ProUtil uses a 100% client-side rendering model. Your document never touches our servers.
Q.What is a "Hard Break" vs a "Soft Break"?
A hard break creates a visible new line, while modern markdown often ignores a single line break (soft break) within a paragraph.
Q.Can I use Markdown for emails?
Many modern email clients (like Outlook or Spark) do not support Markdown directly, but you can copy the rendered HTML into them.
Q.How do I make a footnote?
Footnote syntax ([^1]) is an extension to standard markdown and is supported by some but not all GFM implementations.
Q.Why use Markdown over Word or Google Docs?
Markdown is platform-independent, version-control friendly, and allows you to keep your hands on the keyboard for faster writing.