-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add /docs directory for GitHub Pages (#1138)
Add /docs directory for GitHub Pages
- Loading branch information
Showing
16 changed files
with
389 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.git* | ||
test/ | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
marked.js.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers. | |
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting the project team by submitting a PR with changes to the [AUTHORS](https://github.com/markedjs/marked/blob/master/AUTHORS.md) page (or emailing [email protected]). All | ||
reported by contacting the project team by submitting a PR with changes to the [AUTHORS](AUTHORS.md) page (or emailing [email protected]). All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. The project team is | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<ul> | ||
<li><a href="#marked">About</a></li> | ||
<li><a href="#install">Installation</a></li> | ||
<li><a href="#usage">Usage</a></li> | ||
<li><a href="#specifications">Supported Markdown specifications</a></li> | ||
<li><a href="#security">Security</a></li> | ||
<li><a href="#contributing">Contributing</a></li> | ||
<li><a href="#authors">Authors</a></li> | ||
<li><a href="#license">License</a></li> | ||
</ul> | ||
|
||
<h2 id="marked">Marked</h2> | ||
|
||
Marked is | ||
|
||
1. built for speed.<sup>*</sup> | ||
2. a low-level markdown compiler that allows frequent parsing of large chunks of markdown without caching or blocking for long periods of time.<sup>**</sup> | ||
3. light-weight while implementing all markdown features from the supported flavors & specifications.<sup>***</sup> | ||
4. available as a command line interface (CLI) and running in client- or server-side JavaScript projects. | ||
|
||
<p><small><sup>*</sup> Still working on metrics for comparative analysis and definition.</small><br> | ||
<small><sup>**</sup> As few dependencies as possible.</small><br> | ||
<small><sup>***</sup> Strict compliance could result in slower processing when running comparative benchmarking.</small></p> | ||
|
||
<h2 id="installation">Installation</h2> | ||
|
||
**CLI:** `npm install -g marked` | ||
|
||
**In-browser:** `npm install marked --save` | ||
|
||
<h2 id="usage">Usage</h2> | ||
|
||
**CLI** | ||
|
||
``` bash | ||
$ marked -o hello.html | ||
hello world | ||
^D | ||
$ cat hello.html | ||
<p>hello world</p> | ||
``` | ||
|
||
**Browser** | ||
|
||
```html | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<title>Marked in the browser</title> | ||
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> | ||
</head> | ||
<body> | ||
<div id="content"></div> | ||
<script> | ||
document.getElementById('content').innerHTML = | ||
marked('# Marked in browser\n\nRendered by **marked**.'); | ||
</script> | ||
</body> | ||
</html> | ||
``` | ||
|
||
|
||
Marked offers [advanced configurations](USING_ADVANCED.md) and [extensibility](USING_PRO.md) as well. | ||
|
||
<h2 id="specifications">Supported Markdown specifications</h2> | ||
|
||
We actively support the features of the following [Markdown flavors](https://github.com/commonmark/CommonMark/wiki/Markdown-Flavors). | ||
|
||
|Flavor |Version | | ||
|:----------------------------------------------------------|:----------| | ||
|The original markdown.pl |-- | | ||
|[CommonMark](http://spec.commonmark.org/0.28/) |0.28 | | ||
|[GitHub Flavored Markdown](https://github.github.com/gfm/) |0.28 | | ||
|
||
By supporting the above Markdown flavors, it's possible that Marked can help you use other flavors as well; however, these are not actively supported by the community. | ||
|
||
<h2 id="security">Security</h2> | ||
|
||
The only completely secure system is the one that doesn't exist in the first place. Having said that, we take the security of Marked very seriously. | ||
|
||
Therefore, please disclose potential security issues by email to the project [committers](AUTHORS.md) as well as the [listed owners within NPM](https://docs.npmjs.com/cli/owner). We will provide an initial assessment of security reports within 48 hours and should apply patches within 2 weeks (also, feel free to contribute a fix for the issue). | ||
|
||
<h2 id="contributing">Contributing</h2> | ||
|
||
The marked community enjoys a spirit of collaboration and contribution from all comers. Whether you're just getting started with Markdown, JavaScript, and Marked or you're a veteran with it all figured out, we're here to help each other improve as professionals while helping Marked improve technically. Please see our [contributing documentation](CONTRIBUTING.md) for more details. | ||
|
||
For our Contribution License Agreement, see our [license](https://github.com/markedjs/marked/blob/master/LICENSE.md). | ||
|
||
<h2 id="authors">Authors</h2> | ||
|
||
For list of credited authors and contributors, please see our [authors page](AUTHORS.md). | ||
|
||
<h2 id="license">License</h2> | ||
|
||
Copyright (c) 2011-2018, Christopher Jeffrey. (MIT License) | ||
|
||
See [license](https://github.com/markedjs/marked/blob/master/LICENSE.md) for more details. | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.