Add marked

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2016-09-30 13:52:41 +02:00 committed by Lukas Reschke
parent 127024d89d
commit e7a2151c4d
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
5 changed files with 68 additions and 0 deletions

View File

@ -20,6 +20,7 @@
"jquery-migrate": "~1.4.0",
"jquery-ui": "1.10.0",
"jsTimezoneDetect": "~1.0.5",
"marked": "^0.3.6",
"moment": "^2.15.0",
"select2": "~3.4.8",
"zxcvbn": "*",

View File

@ -1,12 +1,14 @@
test/
src/
bower.json
component.json
.jshintrc
.travis.yml
CHANGELOG*
Gemfile
gruntfile.js
Gruntfile.js
Gulpfile.js
Makefile
package.json
README*
@ -156,3 +158,10 @@ autosize/**
!autosize/dist/autosize.js
!autosize/.bower.json
!autosize/LICENCE.md
#marked
marked/bin
marked/doc
marked/index.js
marked/lib
marked/man

33
core/vendor/marked/.bower.json vendored Normal file
View File

@ -0,0 +1,33 @@
{
"name": "marked",
"version": "0.3.6",
"homepage": "https://github.com/chjj/marked",
"authors": [
"Christopher Jeffrey <chjjeffrey@gmail.com>"
],
"description": "A markdown parser built for speed",
"keywords": [
"markdown",
"markup",
"html"
],
"main": "lib/marked.js",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"app/bower_components",
"test",
"tests"
],
"_release": "0.3.6",
"_resolution": {
"type": "version",
"tag": "v0.3.6",
"commit": "eddec20467c2d10c7769061ee9074e268500966f"
},
"_source": "https://github.com/chjj/marked.git",
"_target": "0.3.6",
"_originalSource": "marked"
}

19
core/vendor/marked/LICENSE vendored Normal file
View File

@ -0,0 +1,19 @@
Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/)
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.

6
core/vendor/marked/marked.min.js vendored Normal file

File diff suppressed because one or more lines are too long