YAMEP (Yet Another Markdown Editor in Python) is a lightweight and user-friendly markdown editor built with Python and PySide6. YAMEP offers a streamlined environment for writing and previewing markdown content with useful editing tools, live preview, and customizable themes.
- Markdown Editing with Live Preview: Write markdown in the editor with a real-time preview panel.
- Syntax Highlighting: Inline code syntax highlighting to enhance readability.
- File Management: Browse and open markdown files directly from the application.
- Theme Toggling: Choose between light, dark, and blue themes for a comfortable editing experience.
- Task Lists: Supports task lists with checkboxes in the preview.
- Easy-to-Use Interface: Intuitive design with essential formatting buttons for markdown syntax.
You can install YAMEP on Arch Linux through the Arch User Repository (AUR). If you use an AUR helper like yay
, install with:
yay -S yamep
Or manually clone and build the package with:
git clone https://aur.archlinux.org/yamep.git
cd yamep
makepkg -si
To isolate YAMEP in its own environment using pipx
, first ensure pipx
is installed, then run:
pipx install yamep
If you'd like to install YAMEP in a virtual environment, follow these steps:
-
Clone the repository:
git clone https://codeberg.org/tomsh/yamep.git cd yamep
-
Create and activate a virtual environment:
python -m venv .venv source .venv/bin/activate # On Windows, use .venv\Scripts\activate
-
Install YAMEP with
pip
:pip install .
-
Run YAMEP from the terminal:
yamep
After installation, run yamep
from the terminal or launch it from the Applications menu under Utilities (on supported desktop environments).
This project is licensed under the MIT License. See the LICENSE file for more details.