Skip to content

Home EasyEdit

Ricardo Wagemaker edited this page Nov 25, 2024 · 1 revision

Welcome to the EasyEdit wiki!

EasyEdit

EasyEdit is an easy markdown editor that allows you to write Markdown (MD) and preview it in real-time. You can save, load .md files and export to HTML,TXT & PDF. All notable changes to this project will be documented in this file.

Install the project

$ node --version
$ npm --version
$ git --version

$ git clone https://github.com/gcclinux/EasyEdit.git
$ cd EasyEdit
$ npm install

Run the project

$ npm start

Build as an standalone App (Windows & Linux)

$ npm run electron:build

Mermeid example

flowchart TD
    A[Christmas] -->|Get money| B(Go shopping)
    B --> C{Let me think}
    C -->|One| D[Laptop]
    C -->|Two| E[iPhone]
    C -->|Three| F[fa:fa-car Car]
Loading

Gantt graph as code

gantt
    title Create EasyEdit
    dateFormat YYYY-MM-DD
    section Tasks
    Initial App :task1, 2024-11-11, 14d
    Add features :task2, 2024-11-18, 14d
    Run test :task3, 2024-11-25, 3d
    Deliver Product :task4, 2024-11-31 , 3d
Loading

Table displayed

header1 header2 header3
row1 col2 col3
row2 col2 col3

Example of a footnote[^1] within text. [^1]: Description of footnote text

Clone this wiki locally