A simple editor for markdown/txt files. Supports saving changes into git repositories hosted anywhere (git add, git commit).
Docker image and built binaries are provided. Written by @TitPetric and licensed under the permissive WTFPL.
To run it in Docker:
docker run -d --name pendulum \
--restart=always \
-p 8080:8080 \
-v $(pwd):/app/contents \
titpetric/pendulum
This will expose your current directory to Pendulum for editing. You can open the interface on http://localhost:8080/ and start editing those files right away.
There are binaries for 64bit Linux and Windows available on the releases page. Usage is simple. Download the .tgz file, unpack the binary and run it with any options like this:
# ./pendulum -?
flag provided but not defined: -?
Usage of pendulum:
-addr string
Address for server (default ":8080")
-contents string
Folder for display (default ".")
If you want to serve contents of a test
folder on port 8081 you would run it as:
./pendulum -addr :8081 -contents test
It's also supported to pass the contents folder as a normal argument. This is the shortest way
of starting pendulum serving a custom folder: ./pendulum folder
.
As you write or scroll either the textarea or the preview pane, the scroll positions are synchronised based on percentage. In case of images in the text, accuracy can be quite off, but it's possible to improve this behaviour in the future.
Most of the development is basically related with the preview of whatever it is you're editing. The editor itself doesn't care about anything other than the contents of the text file you're opening and trying to save.
If you want to thank me, please consider buying a book or three:
This project exists only because of the last book on the list.
There's a distinct lack of friendly solutions that just let you point to a folder and edit a bunch of text or markdown files. I wrote about three books on Leanpub (see above), and it was useful to provide me with a way to review those markdown files. I'm also blogging with Hugo, used to blog with Hexo, have some Jekyll files for my GitHub page, and I tend to write documentation with MkDocs. That's about five systems which I actively write content into and those are just the public ones.
There's a very simple API that powers the editor. The API provides exactly three calls:
/api/list
- lists folders and files for navigation,/api/read
- reads a single file for editing,/api/store
- stores a single file contents (can create new files)
It operates exclusively on the contents
folder and the files you provide in there. The editor
doesn't care what kind of files you put there, currently only files starting with a dot are excluded,
ie, .git
, .gitignore
,...
A full HTTP server is implemented with Go. By default it listens on port 8080, but it's trivial
to change this, just by passing the -addr
option when you run it.
go run *.go -addr :80
Note: Pendulum supports git versioning. It does require you to set git config for
user.name
anduser.email
. Without those, Pendulum will not add/commit files, regardless if a git repository is present or not.
Software | Type | Syntax | Support |
---|---|---|---|
Leanpub | Citation | A> Note |
Yes |
Leanpub | Pagebreak | {pagebreak} |
Yes |
Hugo | Pagebreak | <!--more--> |
Yes |
Hexo | Image | asset_img | Yes |
I'm trying to add new features here. Feel free to submit a PR if there's a syntax you'd like to support, with the appropriate tests under front/src/markdown/*
.
- Full API for list, read and store,
- Navigation of folders and files on the front-end,
- Editor component with synchronised scrolling with preview,
- Marked preview,
- (partially done) Add support for some of Leanpub syntax (
A>
, page break,...), - Add support for some of Hugo syntax (
<!--more-->
, metadata, ...), - Actually save the contents that are being edited (client-side ajax),
- Check if git has user.name && user.email set before commiting with git
- Add git support to Go API
- Add option for HTTP auth
- Deprecate/remove PHP API
- Support images with relative links in rendering
- Display images from preview markdown pane
- More markdown styling (done: blockquote, code, image, needs: tables,...)
- Docker image for delivery
- Go server for delivery
- Git support from Go / Docker
- Codeship CI,
- Semver (sort of),
- Pack public_html data into release binary
- Downloadable builds on GitHub
- Windows build
- Create new files over front-end interface
I guess unit testing should be somewhere on the list, if this thing ever gets any traction.