Permalink
Please sign in to comment.
Showing
with
2,145 additions
and 0 deletions.
- +220 −0 .gitignore
- +1 −0 .node-version
- +5 −0 CHANGELOG.md
- +21 −0 LICENSE
- +53 −0 README.md
- +7 −0 lerna.json
- BIN marp.png
- +24 −0 package.json
- +1,814 −0 yarn.lock
@@ -0,0 +1,220 @@ | |||
########## gitignore.io ########## | |||
# Created by https://www.gitignore.io/api/node,windows,macos,linux,sublimetext,emacs,vim,visualstudiocode | |||
|
|||
### Emacs ### | |||
# -*- mode: gitignore; -*- | |||
*~ | |||
\#*\# | |||
/.emacs.desktop | |||
/.emacs.desktop.lock | |||
*.elc | |||
auto-save-list | |||
tramp | |||
.\#* | |||
|
|||
# Org-mode | |||
.org-id-locations | |||
*_archive | |||
|
|||
# flymake-mode | |||
*_flymake.* | |||
|
|||
# eshell files | |||
/eshell/history | |||
/eshell/lastdir | |||
|
|||
# elpa packages | |||
/elpa/ | |||
|
|||
# reftex files | |||
*.rel | |||
|
|||
# AUCTeX auto folder | |||
/auto/ | |||
|
|||
# cask packages | |||
.cask/ | |||
dist/ | |||
|
|||
# Flycheck | |||
flycheck_*.el | |||
|
|||
# server auth directory | |||
/server/ | |||
|
|||
# projectiles files | |||
.projectile | |||
|
|||
# directory configuration | |||
.dir-locals.el | |||
|
|||
### Linux ### | |||
|
|||
# temporary files which can be created if a process still has a handle open of a deleted file | |||
.fuse_hidden* | |||
|
|||
# KDE directory preferences | |||
.directory | |||
|
|||
# Linux trash folder which might appear on any partition or disk | |||
.Trash-* | |||
|
|||
# .nfs files are created when an open file is removed but is still being accessed | |||
.nfs* | |||
|
|||
### macOS ### | |||
*.DS_Store | |||
.AppleDouble | |||
.LSOverride | |||
|
|||
# Icon must end with two \r | |||
Icon | |||
|
|||
# Thumbnails | |||
._* | |||
|
|||
# Files that might appear in the root of a volume | |||
.DocumentRevisions-V100 | |||
.fseventsd | |||
.Spotlight-V100 | |||
.TemporaryItems | |||
.Trashes | |||
.VolumeIcon.icns | |||
.com.apple.timemachine.donotpresent | |||
|
|||
# Directories potentially created on remote AFP share | |||
.AppleDB | |||
.AppleDesktop | |||
Network Trash Folder | |||
Temporary Items | |||
.apdisk | |||
|
|||
### Node ### | |||
# Logs | |||
logs | |||
*.log | |||
npm-debug.log* | |||
yarn-debug.log* | |||
yarn-error.log* | |||
|
|||
# Runtime data | |||
pids | |||
*.pid | |||
*.seed | |||
*.pid.lock | |||
|
|||
# Directory for instrumented libs generated by jscoverage/JSCover | |||
lib-cov | |||
|
|||
# Coverage directory used by tools like istanbul | |||
coverage | |||
|
|||
# nyc test coverage | |||
.nyc_output | |||
|
|||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | |||
.grunt | |||
|
|||
# Bower dependency directory (https://bower.io/) | |||
bower_components | |||
|
|||
# node-waf configuration | |||
.lock-wscript | |||
|
|||
# Compiled binary addons (http://nodejs.org/api/addons.html) | |||
build/Release | |||
|
|||
# Dependency directories | |||
node_modules/ | |||
jspm_packages/ | |||
|
|||
# Typescript v1 declaration files | |||
typings/ | |||
|
|||
# Optional npm cache directory | |||
.npm | |||
|
|||
# Optional eslint cache | |||
.eslintcache | |||
|
|||
# Optional REPL history | |||
.node_repl_history | |||
|
|||
# Output of 'npm pack' | |||
*.tgz | |||
|
|||
# Yarn Integrity file | |||
.yarn-integrity | |||
|
|||
# dotenv environment variables file | |||
.env | |||
|
|||
|
|||
### SublimeText ### | |||
# cache files for sublime text | |||
*.tmlanguage.cache | |||
*.tmPreferences.cache | |||
*.stTheme.cache | |||
|
|||
# workspace files are user-specific | |||
*.sublime-workspace | |||
|
|||
# project files should be checked into the repository, unless a significant | |||
# proportion of contributors will probably not be using SublimeText | |||
# *.sublime-project | |||
|
|||
# sftp configuration file | |||
sftp-config.json | |||
|
|||
# Package control specific files | |||
Package Control.last-run | |||
Package Control.ca-list | |||
Package Control.ca-bundle | |||
Package Control.system-ca-bundle | |||
Package Control.cache/ | |||
Package Control.ca-certs/ | |||
Package Control.merged-ca-bundle | |||
Package Control.user-ca-bundle | |||
oscrypto-ca-bundle.crt | |||
bh_unicode_properties.cache | |||
|
|||
# Sublime-github package stores a github token in this file | |||
# https://packagecontrol.io/packages/sublime-github | |||
GitHub.sublime-settings | |||
|
|||
### Vim ### | |||
# swap | |||
[._]*.s[a-v][a-z] | |||
[._]*.sw[a-p] | |||
[._]s[a-v][a-z] | |||
[._]sw[a-p] | |||
# session | |||
Session.vim | |||
# temporary | |||
.netrwhist | |||
# auto-generated tag files | |||
tags | |||
|
|||
### VisualStudioCode ### | |||
.vscode/* | |||
|
|||
### Windows ### | |||
# Windows thumbnail cache files | |||
Thumbs.db | |||
ehthumbs.db | |||
ehthumbs_vista.db | |||
|
|||
# Folder config file | |||
Desktop.ini | |||
|
|||
# Recycle Bin used on file shares | |||
$RECYCLE.BIN/ | |||
|
|||
# Windows Installer files | |||
*.cab | |||
*.msi | |||
*.msm | |||
*.msp | |||
|
|||
# Windows shortcuts | |||
*.lnk |
@@ -0,0 +1 @@ | |||
v8.10.0 |
@@ -0,0 +1,5 @@ | |||
# Change Log | |||
|
|||
## [Unreleased] | |||
|
|||
* Initial release. |
@@ -0,0 +1,21 @@ | |||
MIT License | |||
|
|||
Copyright (c) 2018 Yuki Hattori (yukihattori1116@gmail.com) | |||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy | |||
of this software and associated documentation files (the "Software"), to deal | |||
in the Software without restriction, including without limitation the rights | |||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |||
copies of the Software, and to permit persons to whom the Software is | |||
furnished to do so, subject to the following conditions: | |||
|
|||
The above copyright notice and this permission notice shall be included in all | |||
copies or substantial portions of the Software. | |||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |||
SOFTWARE. |
@@ -0,0 +1,53 @@ | |||
<div align="center"> | |||
<p> | |||
<img src="marp.png" alt="Marp" width="500" /> | |||
</p> | |||
<p> | |||
<strong>Marp</strong>: Markdown Presentation Writer | |||
</p> | |||
</div> | |||
|
|||
> This repository is **_the next version of Marp_** (Marp Next). | |||
> | |||
> Refer to **[yhatt/marp]** when you are looking for pre-released desktop app. However, keep in your mind that _it has no longer been developed_. | |||
--- | |||
|
|||
**Marp** is the simplest presentation writer with Markdown. | |||
|
|||
### :warning: This repository is under construction and not ready to use. | |||
|
|||
## [PLANNING] Marp family | |||
|
|||
| | Package | Description | | |||
| :-: | :----------------------------- | :------------------------------------------------------------------------------------------------------------------------------------ | | |||
| ◆ | **[marp-team/marpit][marpit]** | The skinny framework for creating slide deck from Markdown. It is independent of the other packages. | | |||
| ◆ | **[marp-team/marp][marp]** | Monorepo for Marp tools. | | |||
| ┣ | **_marp_** | The core of Marp family based on [Marpit][marpit]. It provides a parser, renderer, and theme set. | | |||
| ┣ | **_marp-cli_** | Provide CLI converter from Markdown to static HTML / CSS, that is printable as PDF. | | |||
| ┣ | **_marp-web_** | The main interface of Marp. It is going to be able to work on the both of online / offline by using [Progressive Web App (PWA)][pwa]. | | |||
| ┗ | **_marp-electron_** | The desktop client of marp-web wrapped in [Electron]. It would replace [yhatt/marp], and support local files. | | |||
|
|||
[yhatt/marp]: https://github.com/yhatt/marp | |||
[marp]: https://github.com/marp-team/marp | |||
[marpit]: https://github.com/marp-team/marpit | |||
[pwa]: https://en.wikipedia.org/wiki/Progressive_Web_Apps | |||
[electron]: https://electronjs.org/ | |||
|
|||
## Development | |||
|
|||
Under construction. | |||
|
|||
### Contributing | |||
|
|||
We are sorry but currently we are not ready to accept your contribute because it is under developing for proof of concept. | |||
|
|||
## Author | |||
|
|||
Managed by [@marp-team](https://github.com/marp-team). | |||
|
|||
* <img src="https://github.com/yhatt.png" width="16" height="16"/> Yuki Hattori ([@yhatt](https://github.com/yhatt)) | |||
|
|||
## License | |||
|
|||
[MIT License](LICENSE) |
@@ -0,0 +1,7 @@ | |||
{ | |||
"lerna": "2.9.0", | |||
"packages": ["packages/*"], | |||
"version": "independent", | |||
"npmClient": "yarn", | |||
"useWorkspaces": true | |||
} |
Binary file not shown.
@@ -0,0 +1,24 @@ | |||
{ | |||
"name": "@marp-team/marp-repository", | |||
"description": "Markdown Presentation Writer", | |||
"private": true, | |||
"license": "MIT", | |||
"author": { | |||
"name": "Marp team", | |||
"url": "https://github.com/marp-team" | |||
}, | |||
"contributors": [ | |||
{ | |||
"name": "Yuki Hattori", | |||
"url": "https://github.com/yhatt" | |||
} | |||
], | |||
"repository": { | |||
"type": "git", | |||
"url": "https://github.com/marp-team/marp" | |||
}, | |||
"workspaces": ["packages/*"], | |||
"devDependencies": { | |||
"lerna": "^2.9.0" | |||
} | |||
} |

Oops, something went wrong.
0 comments on commit
7ed769f