Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benweet/stackedit
In-browser Markdown editor
https://github.com/benweet/stackedit
blogger couchdb dropbox editor gist github gitlab google-drive javascript markdown offline stackedit wordpress zendesk
Last synced: 3 days ago
JSON representation
In-browser Markdown editor
- Host: GitHub
- URL: https://github.com/benweet/stackedit
- Owner: benweet
- License: apache-2.0
- Created: 2013-03-24T13:46:06.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-07-04T16:12:06.000Z (over 1 year ago)
- Last Synced: 2024-10-29T09:58:08.641Z (about 1 month ago)
- Topics: blogger, couchdb, dropbox, editor, gist, github, gitlab, google-drive, javascript, markdown, offline, stackedit, wordpress, zendesk
- Language: JavaScript
- Homepage: https://stackedit.io/
- Size: 35.8 MB
- Stars: 21,745
- Watchers: 504
- Forks: 2,730
- Open Issues: 693
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - stackedit - In-browser Markdown editor (JavaScript)
- awesomeLibrary - stackedit - In-browser Markdown editor (语言资源库 / JavaScript)
- favorite-link - 浏览器中的 Markdown 编辑器。
- awesome - benweet/stackedit - In-browser Markdown editor (JavaScript)
- awesome-web-editor - stackedit - In-browser Markdown editor. (Browser editor)
- my-awesome - stackedit - In-browser markdown editor (JavaScript)
- awesome-repositories - benweet/stackedit - In-browser Markdown editor (JavaScript)
- awesome-starred - stackedit - In-browser Markdown editor (JavaScript)
- awesome-github-star - stackedit - browser Markdown editor | benweet | 20719 | (JavaScript)
- awesome-markdown-editors - `benweet/stackedit`
- starred-awesome - stackedit - In-browser Markdown editor (JavaScript)
- jimsghstars - benweet/stackedit - In-browser Markdown editor (JavaScript)
- StarryDivineSky - benweet/stackedit
- awesome-starred - benweet/stackedit - In-browser Markdown editor (wordpress)
README
# StackEdit
[![Build Status](https://img.shields.io/travis/benweet/stackedit.svg?style=flat)](https://travis-ci.org/benweet/stackedit) [![NPM version](https://img.shields.io/npm/v/stackedit.svg?style=flat)](https://www.npmjs.org/package/stackedit)
> Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.
https://stackedit.io/
### Ecosystem
- [Chrome app](https://chrome.google.com/webstore/detail/iiooodelglhkcpgbajoejffhijaclcdg)
- NEW! Embed StackEdit in any website with [stackedit.js](https://github.com/benweet/stackedit.js)
- NEW! [Chrome extension](https://chrome.google.com/webstore/detail/ajehldoplanpchfokmeempkekhnhmoha) that uses stackedit.js
- [Community](https://community.stackedit.io/)### Build
```bash
# install dependencies
npm install# serve with hot reload at localhost:8080
npm start# build for production with minification
npm run build# build for production and view the bundle analyzer report
npm run build --report
```### Deploy with Helm
StackEdit Helm chart allows easy StackEdit deployment to any Kubernetes cluster.
You can use it to configure deployment with your existing ingress controller and cert-manager.```bash
# Add the StackEdit Helm repository
helm repo add stackedit https://benweet.github.io/stackedit-charts/# Update your local Helm chart repository cache
helm repo update# Deploy StackEdit chart to your cluster
helm install --name stackedit stackedit/stackedit \
--set dropboxAppKey=$DROPBOX_API_KEY \
--set dropboxAppKeyFull=$DROPBOX_FULL_ACCESS_API_KEY \
--set googleClientId=$GOOGLE_CLIENT_ID \
--set googleApiKey=$GOOGLE_API_KEY \
--set githubClientId=$GITHUB_CLIENT_ID \
--set githubClientSecret=$GITHUB_CLIENT_SECRET \
--set wordpressClientId=\"$WORDPRESS_CLIENT_ID\" \
--set wordpressSecret=$WORDPRESS_CLIENT_SECRET
```Later, to upgrade StackEdit to the latest version:
```bash
helm repo update
helm upgrade stackedit stackedit/stackedit
```If you want to uninstall StackEdit:
```bash
helm delete --purge stackedit
```If you want to use your existing ingress controller and cert-manager issuer:
```bash
# See https://docs.cert-manager.io/en/latest/tutorials/acme/quick-start/index.html
helm install --name stackedit stackedit/stackedit \
--set dropboxAppKey=$DROPBOX_API_KEY \
--set dropboxAppKeyFull=$DROPBOX_FULL_ACCESS_API_KEY \
--set googleClientId=$GOOGLE_CLIENT_ID \
--set googleApiKey=$GOOGLE_API_KEY \
--set githubClientId=$GITHUB_CLIENT_ID \
--set githubClientSecret=$GITHUB_CLIENT_SECRET \
--set wordpressClientId=\"$WORDPRESS_CLIENT_ID\" \
--set wordpressSecret=$WORDPRESS_CLIENT_SECRET \
--set ingress.enabled=true \
--set ingress.annotations."kubernetes\.io/ingress\.class"=nginx \
--set ingress.annotations."cert-manager\.io/cluster-issuer"=letsencrypt-prod \
--set ingress.hosts[0].host=stackedit.example.com \
--set ingress.hosts[0].paths[0]=/ \
--set ingress.tls[0].secretName=stackedit-tls \
--set ingress.tls[0].hosts[0]=stackedit.example.com
```