https://github.com/devorein/remarque
A package to convert your markdown file to a full blown web app
https://github.com/devorein/remarque
cli markdown note-taking package web-app-generator web-application
Last synced: about 2 months ago
JSON representation
A package to convert your markdown file to a full blown web app
- Host: GitHub
- URL: https://github.com/devorein/remarque
- Owner: Devorein
- Created: 2020-04-03T05:32:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-11T16:45:16.000Z (about 6 years ago)
- Last Synced: 2025-02-07T11:31:24.336Z (over 1 year ago)
- Topics: cli, markdown, note-taking, package, web-app-generator, web-application
- Language: JavaScript
- Homepage:
- Size: 615 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remarque
A package to convert your markdown to a full blown web app
## Steps
1. Clone or download the `experiment` branch. It always has the latest commits
2. Go into the remarque directory by using `cd Remarque`.
3. Make sure you have node.js installed on your machine
4. Install all the dependencies by running `npm i`
5. After that just run `npm i -g`, to install remarque globally
6. Follow the Guidelines and for a overview of the commands check below.
## Package
WIP
## CLI
### Commands
#### `convert` (`cnv`)
##### Options

* `c`, `chapters`: Comma separated list of chapters to convert
* `o`, `output` : Directory where to dump all the converted files
* `j`, `config` : Path to custom configuration json file relative to cwd
##### Examples

```shell
remarque convert -c Converts all the chapters
remarque convert -c 1 Convert the chapter 1
remarque convert -c 1-5 Convert chapters 1-5
remarque convert -c 1-5,6 Convert chapters 1-5 and chapter 6
remarque convert -c 1-5,6-8 Convert chapters 1-5 and chapters 6-8
remarque convert -c 1 -o OUTPUTS dumps chapter 1 to OUTPUTS directory
remarque convert -c -o OUTPUTS dumps all the converted files to OUTPUTS
directory
remarque convert -c -o dumps all the converted files to OUTPUT directory
remarque convert -j Get all the configuration data from cwd
remarque.json
remarque convert -j PATH Get all the configuration data from custom
path relative to cwd
```
#### `stat`
WIP