# MarkdownProcessor **Repository Path**: chenyilin37/MarkdownProcessor ## Basic Information - **Project Name**: MarkdownProcessor - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-20 - **Last Updated**: 2026-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
A Markdown Processor Library for Delphi, to process/convert markdown files to HTML.
A Useful utility: MarkDownToHTML.exe to transform any markdown file to HTML
Latest Version 1.3.0 - 21 Aug 2025

This library is compatible from Delphi XE3 version to latest.
www.embarcadero.com - learndelphi.org
With MarkDownToHTML.exe you can transform a markdown file to HTML using different markdown dialects or StyleSheet.
run MarkDownToHTML.exe help processfile for a complete help.
Look into Cmd\MarkdownToHTML\Test\MarkDownToHTML_Test.cmd for examples
This is a Pascal (Delphi) library that processes markdown to HTML. At present the following dialects of markdown are supported:
Declare a variable of the class TMarkdownProcessor:
var
md : TMarkdownProcessor;
Create a TMarkdownProcessor (MarkdownProcessor.pas) of the dialect you want:
md := TMarkdownProcessor.createDialect(mdDaringFireball)
Decide whether you want to allow active content
md.AllowUnSafe := true;
Note: you should only set this to true if you need to - active content can be a significant safety/security issue.
Generate HTML fragments from Markdown content:
html := md.process(markdown);
Note that the HTML returned is an HTML fragment, not a full HTML page.
Do not forget to dispose of the object after the use:
md.free
Large rework was made for adding support for tables, math formulas, etc.
This library is used in two projects:
A collection of tools for markdown files, to edit and view content, with an advanced Editor:

An integrated help system based on files in Markdown format (and also html), for Delphi applications:

21 Aug 2025: ver. 1.3.0
08 Apr 2025: ver. 1.2.0
16 Dec 2024: ver. 1.1.0
22 Oct 2023: ver. 1.0.0
Copyright (c) Ethea S.r.l.
Licensed under the Apache License, Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
MarkdownProcessor implementation is a fork of FPC-markdown by Miguel A. Risco-Castillo FPC-markdown
FPC-markdown implementation is a fork of Grahame Grieve pascal port Delphi-markdown
MarkDownToHTML.exe is a CLI based on the project:
Italian Delphi Day 2020: Una CLI che i tuoi utenti ameranno
by Marco Breveglieri
It also uses CommandLineParser
by Vincent Parret, licensed under the Apache License, Version 2.0 (the “License”);