We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StackEdit是一个开放源码免费使用的 MarkDown 编辑器, 基于 PageDown,使用了 Stack Overflow 和其他 Stack Exchange 网站的 MarkDown 库,stackoverflow出品。
展示页面: https://stackedit.io/.
这款在线markdown编辑器,是一款很赞的应用。如果你是markdown的用户,那么你要试一下这款应用;如果你是chrome用户,那么你更要安装这款应用。我是把它作为chrome的一个插件应用来使用的。下面来看一下这款应用的特点及使用技巧。
FROM ubuntu:14.04 RUN apt-get update \ && apt-get install -y curl git \ && curl -sL https://deb.nodesource.com/setup_0.12 | bash - \ && apt-get install -y nodejs \ && rm -rf /var/lib/apt/lists/* \ && git clone https://github.com/benweet/stackedit.git WORKDIR /stackedit RUN npm install \ && npm install bower \ && node_modules/bower/bin/bower install --production --config.interactive=false --allow-root EXPOSE 3000 CMD nodejs server.js
build Image
docker build -t stackedit .
run container
docker run -d -p 3000:3000 stackedit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
StackEdit是一个开放源码免费使用的 MarkDown 编辑器, 基于 PageDown,使用了 Stack Overflow 和其他 Stack Exchange 网站的 MarkDown 库,stackoverflow出品。
展示页面: https://stackedit.io/.
一、介绍
简介
这款在线markdown编辑器,是一款很赞的应用。如果你是markdown的用户,那么你要试一下这款应用;如果你是chrome用户,那么你更要安装这款应用。我是把它作为chrome的一个插件应用来使用的。下面来看一下这款应用的特点及使用技巧。
功能
支持
Build Docker Image
The text was updated successfully, but these errors were encountered: