
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
A standalone and embeddable Python based Markdown editor with HTML preview.
Explore the docs »
PyPi
·
Report Bug
·
Request Feature
A standalone and embeddable Python based Markdown editor with HTML preview.
To get a local copy up and running choose one of the below install instructions and follow the steps provided.
The simplest way to install the PyMD Editor is to use pip
:
pip install pymd-editor
Alternatively you can install from source by following the steps below:
git clone https://github.com/hreikin/pymd-editor.git
cd pymd-editor/
python3 -m venv .venv
source .venv/bin/activate
pip
:
pip install -r requirements.txt
To start the standalone editor simply run the following:
python3 -m pymd_editor
To use the ttkbootstrap
styled EditorFrame
in one of your own python scripts:
from pymd_editor.pymd_editor_frame import EditorFrame
import tkinter as tk
import ttkbootstrap as ttk
from ttkbootstrap.constants import *
root = ttk.Window(themename="darkly")
app = EditorFrame(root)
app.pack(fill="both", expand=1)
app.mainloop()
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT License. See LICENSE.txt
for more information.
Github Link: https://github.com/hreikin/pymd-editor
PyPi Link: https://pypi.org/project/pymd-editor/
Documentation: https://hreikin.github.io/pymd-editor/
FAQs
A Python based Markdown editor with HTML preview
We found that pymd-editor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.