114 changed files with 5532 additions and 1244 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,2 +1,2 @@ |
|||
/*! Editor.md v1.2.0 | editormd.logo.css.min.map | A simple online markdown editor. | MIT License | By: Pandao | https://github.com/pandao/editor.md | 2015-03-10 */ |
|||
/*! Editor.md v1.3.0 | editormd.logo.css.min.map | A simple online markdown editor. | MIT License | By: Pandao | https://github.com/pandao/editor.md | 2015-03-12 */ |
|||
{"version":3,"mappings":";;;;;;;;AAKA,UASC;EARA,WAAW,EAAE,eAAe;EAC5B,GAAG,EAAC,yCAAyC;EAC7C,GAAG,EAAC,sQAA4E;EAIhF,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;;AAGnB;;;;;;;;iBAQkB;EACjB,WAAW,EAAE,eAAe;EAC5B,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,YAAY,EAAE,MAAM;EACpB,cAAc,EAAE,IAAI;EACjB,SAAS,EAAE,OAAO;EACrB,WAAW,EAAE,CAAC;EACX,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,IAAI;EACpB,cAAc,EAAE,OAAO;EAG1B,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;;AAE/B;;;;;;;;wBAAS;EACL,OAAO,EAAE,QAAQ;;;;;;;AAQzB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,KAAK;;;AAGpB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,iBAAkB;EACd,SAAS,EAAE,GAAG;;;AAGlB,oBAAqB;EACjB,KAAK,EChFO,OAAU","sources"["../editormd.logo.scss","file:///D:/APMServ/www/htdocs/editor.md/scss/lib/variables.scss"],"names"[],"file":"editormd.logo.css"} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,42 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="zh"> |
|||
<head> |
|||
<meta charset="utf-8" /> |
|||
<title>Auto height - Editor.md examples</title> |
|||
<link rel="stylesheet" href="css/style.css" /> |
|||
<link rel="stylesheet" href="../css/editormd.css" /> |
|||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" /> |
|||
</head> |
|||
<body> |
|||
<div id="layout"> |
|||
<header> |
|||
<h1>Auto height</h1> |
|||
</header> |
|||
<div id="test-editormd"> |
|||
<textarea style="display:none;">### Settings |
|||
|
|||
```javascript |
|||
var testEditor = editormd("test-editormd", { |
|||
width : "90%", |
|||
autoHeight : true, |
|||
path : '../lib/' |
|||
}); |
|||
``` |
|||
</textarea> |
|||
</div> |
|||
</div> |
|||
<script src="js/jquery.min.js"></script> |
|||
<script src="../editormd.js"></script> |
|||
<script type="text/javascript"> |
|||
var testEditor; |
|||
|
|||
$(function() { |
|||
testEditor = editormd("test-editormd", { |
|||
width : "90%", |
|||
autoHeight : true, |
|||
path : '../lib/' |
|||
}); |
|||
}); |
|||
</script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,122 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="zh"> |
|||
<head> |
|||
<meta charset="utf-8" /> |
|||
<title>Simple - Editor.md examples</title> |
|||
<link rel="stylesheet" href="css/style.css" /> |
|||
<link rel="stylesheet" href="../css/editormd.css" /> |
|||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" /> |
|||
</head> |
|||
<body> |
|||
<div id="layout"> |
|||
<header> |
|||
<h1>工具栏自动固定定位的开启与禁用</h1> |
|||
<p>Enable / disable toolbar auto fixed position.</p> |
|||
</header> |
|||
<div class="btns"> |
|||
<button id="enable-btn">Enable</button> |
|||
<button id="disable-btn">Disable</button> |
|||
</div> |
|||
<div id="test-editormd"> |
|||
<textarea style="display:none;">###Hello world! |
|||
|
|||
codemirror |
|||
In-browser code editor |
|||
|
|||
codemirror 6291 3 days ago |
|||
angular-ui-codemirror |
|||
This directive allows you to add CodeMirror to your textarea elements. |
|||
|
|||
angular-ui 174 6 weeks ago |
|||
share-codemirror |
|||
Codemirror bindings for ShareJS |
|||
|
|||
share 24 3 months ago |
|||
requirejs-codemirror |
|||
Load codemirror with needed modes and appending codemirror's css only when needed |
|||
|
|||
tuchk4 14 2 months ago |
|||
codemirror-interactive-numbers |
|||
Drag and update literal numbers inside codemirror |
|||
|
|||
fullstackio 4 17 months ago |
|||
cm-searchbox |
|||
CodeMirror addon for search and replace |
|||
|
|||
coderaiser 3 4 days ago |
|||
ng-codemirror-dictionary-hint |
|||
Angular directive that adds hint support to a Codemirror instance based on a custom dictionary. |
|||
|
|||
amarnus 3 3 months ago |
|||
opentok-editor |
|||
A real time collaborative editor for OpenTok using CodeMirror and ot.js |
|||
|
|||
aullman 3 2 weeks ago |
|||
cirru-mode |
|||
Cirru mode for CodeMorror |
|||
|
|||
Cirru 2 12 months ago |
|||
ckeditor-codemirror |
|||
A bower wrapper for the ckeditor codemirror plugin |
|||
|
|||
friedolinfoerder 1 2 weeks ago |
|||
cm-show-invisibles |
|||
Addon for CodeMirror that helps to show invisibles. |
|||
|
|||
coderaiser 1 6 days ago |
|||
angular-codemirror |
|||
Add CodeMirror to your AngularJS app |
|||
|
|||
chouseknecht 0 12 months ago |
|||
codemirror-chord |
|||
Codemirror mode for guitar chords |
|||
|
|||
zabudipar 0 3 weeks ago |
|||
codemirror-states |
|||
Export and import CodeMirror line classes, line widgets and markers |
|||
|
|||
lusever 0 12 days ago |
|||
ember-cli-codemirror-shim |
|||
ES6 module shim for CodeMirror. |
|||
|
|||
IvyApp 0 3 months ago |
|||
ivy-codemirror |
|||
Shim repository for ivy-codemirror. |
|||
|
|||
IvyApp 0 2 months ago |
|||
ng-codemirror |
|||
Allows you to integrate AngularJS and Codemirror with compatibility for RequireJS 2.x. |
|||
|
|||
VictorQueiroz 0 4 months ago |
|||
sml-codemirror-mode |
|||
Bower Distribution of the Sparqlification Mapping Language (SML) Syntax Highlighting Mode for CodeMirror |
|||
</textarea> |
|||
</div> |
|||
</div> |
|||
<script src="js/jquery.min.js"></script> |
|||
<script src="../editormd.js"></script> |
|||
<script type="text/javascript"> |
|||
var testEditor; |
|||
|
|||
$(function() { |
|||
testEditor = editormd("test-editormd", { |
|||
width : "90%", |
|||
height : 1800, |
|||
path : "../lib/" |
|||
}); |
|||
|
|||
$("#enable-btn").bind("click", function() { |
|||
testEditor.setToolbarAutoFixed(true); |
|||
// or |
|||
//testEditor.config("toolbarAutoFixed", true); |
|||
}); |
|||
|
|||
$("#disable-btn").bind("click", function() { |
|||
testEditor.setToolbarAutoFixed(false); |
|||
// or |
|||
//testEditor.config("toolbarAutoFixed", false); |
|||
}); |
|||
}); |
|||
</script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,436 @@ |
|||
List of CodeMirror contributors. Updated before every release. |
|||
|
|||
4r2r |
|||
Aaron Brooks |
|||
Abdelouahab |
|||
Abe Fettig |
|||
Adam Ahmed |
|||
Adam King |
|||
adanlobato |
|||
Adán Lobato |
|||
Adrian Aichner |
|||
aeroson |
|||
Ahmad Amireh |
|||
Ahmad M. Zawawi |
|||
ahoward |
|||
Akeksandr Motsjonov |
|||
Alberto González Palomo |
|||
Alberto Pose |
|||
Albert Xing |
|||
Alexander Pavlov |
|||
Alexander Schepanovski |
|||
Alexander Shvets |
|||
Alexander Solovyov |
|||
Alexandre Bique |
|||
alexey-k |
|||
Alex Piggott |
|||
Aliaksei Chapyzhenka |
|||
Amsul |
|||
amuntean |
|||
Amy |
|||
Ananya Sen |
|||
anaran |
|||
AndersMad |
|||
Anders Nawroth |
|||
Anderson Mesquita |
|||
Andrea G |
|||
Andreas Reischuck |
|||
Andre von Houck |
|||
Andrey Fedorov |
|||
Andrey Klyuchnikov |
|||
Andrey Lushnikov |
|||
Andy Joslin |
|||
Andy Kimball |
|||
Andy Li |
|||
angelozerr |
|||
angelo.zerr@gmail.com |
|||
Ankit |
|||
Ankit Ahuja |
|||
Ansel Santosa |
|||
Anthony Grimes |
|||
Anton Kovalyov |
|||
areos |
|||
as3boyan |
|||
AtomicPages LLC |
|||
Atul Bhouraskar |
|||
Aurelian Oancea |
|||
Bastian Müller |
|||
Bem Jones-Bey |
|||
benbro |
|||
Beni Cherniavsky-Paskin |
|||
Benjamin DeCoste |
|||
Ben Keen |
|||
Bernhard Sirlinger |
|||
Bert Chang |
|||
Billy Moon |
|||
binny |
|||
B Krishna Chaitanya |
|||
Blaine G |
|||
blukat29 |
|||
boomyjee |
|||
borawjm |
|||
Brandon Frohs |
|||
Brandon Wamboldt |
|||
Brett Zamir |
|||
Brian Grinstead |
|||
Brian Sletten |
|||
Bruce Mitchener |
|||
Chandra Sekhar Pydi |
|||
Charles Skelton |
|||
Cheah Chu Yeow |
|||
Chris Coyier |
|||
Chris Granger |
|||
Chris Houseknecht |
|||
Chris Morgan |
|||
Christian Oyarzun |
|||
Christian Petrov |
|||
Christopher Brown |
|||
ciaranj |
|||
CodeAnimal |
|||
ComFreek |
|||
Curtis Gagliardi |
|||
dagsta |
|||
daines |
|||
Dale Jung |
|||
Dan Bentley |
|||
Dan Heberden |
|||
Daniel, Dao Quang Minh |
|||
Daniele Di Sarli |
|||
Daniel Faust |
|||
Daniel Huigens |
|||
Daniel KJ |
|||
Daniel Neel |
|||
Daniel Parnell |
|||
Danny Yoo |
|||
darealshinji |
|||
Darius Roberts |
|||
Dave Myers |
|||
David Mignot |
|||
David Pathakjee |
|||
David Vázquez |
|||
deebugger |
|||
Deep Thought |
|||
Devon Carew |
|||
dignifiedquire |
|||
Dimage Sapelkin |
|||
Dmitry Kiselyov |
|||
domagoj412 |
|||
Dominator008 |
|||
Domizio Demichelis |
|||
Doug Wikle |
|||
Drew Bratcher |
|||
Drew Hintz |
|||
Drew Khoury |
|||
Dror BG |
|||
duralog |
|||
eborden |
|||
edsharp |
|||
ekhaled |
|||
Enam Mijbah Noor |
|||
Eric Allam |
|||
eustas |
|||
Fabien O'Carroll |
|||
Fabio Zendhi Nagao |
|||
Faiza Alsaied |
|||
Fauntleroy |
|||
fbuchinger |
|||
feizhang365 |
|||
Felipe Lalanne |
|||
Felix Raab |
|||
Filip Noetzel |
|||
flack |
|||
ForbesLindesay |
|||
Forbes Lindesay |
|||
Ford_Lawnmower |
|||
Forrest Oliphant |
|||
Frank Wiegand |
|||
Gabriel Gheorghian |
|||
Gabriel Horner |
|||
Gabriel Nahmias |
|||
galambalazs |
|||
Gautam Mehta |
|||
gekkoe |
|||
Gerard Braad |
|||
Gergely Hegykozi |
|||
Giovanni Calò |
|||
Glenn Jorde |
|||
Glenn Ruehle |
|||
Golevka |
|||
Gordon Smith |
|||
Grant Skinner |
|||
greengiant |
|||
Gregory Koberger |
|||
Guillaume Massé |
|||
Guillaume Massé |
|||
Gustavo Rodrigues |
|||
Hakan Tunc |
|||
Hans Engel |
|||
Hardest |
|||
Hasan Karahan |
|||
Herculano Campos |
|||
Hiroyuki Makino |
|||
hitsthings |
|||
Hocdoc |
|||
Ian Beck |
|||
Ian Dickinson |
|||
Ian Wehrman |
|||
Ian Wetherbee |
|||
Ice White |
|||
ICHIKAWA, Yuji |
|||
ilvalle |
|||
Ingo Richter |
|||
Irakli Gozalishvili |
|||
Ivan Kurnosov |
|||
Jacob Lee |
|||
Jakob Miland |
|||
Jakub Vrana |
|||
Jakub Vrána |
|||
James Campos |
|||
James Thorne |
|||
Jamie Hill |
|||
Jan Jongboom |
|||
jankeromnes |
|||
Jan Keromnes |
|||
Jan Odvarko |
|||
Jan T. Sott |
|||
Jared Forsyth |
|||
Jason |
|||
Jason Barnabe |
|||
Jason Grout |
|||
Jason Johnston |
|||
Jason San Jose |
|||
Jason Siefken |
|||
Jaydeep Solanki |
|||
Jean Boussier |
|||
jeffkenton |
|||
Jeff Pickhardt |
|||
jem (graphite) |
|||
Jeremy Parmenter |
|||
Jochen Berger |
|||
Johan Ask |
|||
John Connor |
|||
John Lees-Miller |
|||
John Snelson |
|||
John Van Der Loo |
|||
Jonathan Malmaud |
|||
jongalloway |
|||
Jon Malmaud |
|||
Jon Sangster |
|||
Joost-Wim Boekesteijn |
|||
Joseph Pecoraro |
|||
Joshua Newman |
|||
Josh Watzman |
|||
jots |
|||
jsoojeon |
|||
Juan Benavides Romero |
|||
Jucovschi Constantin |
|||
Juho Vuori |
|||
Justin Hileman |
|||
jwallers@gmail.com |
|||
kaniga |
|||
Ken Newman |
|||
Ken Rockot |
|||
Kevin Sawicki |
|||
Kevin Ushey |
|||
Klaus Silveira |
|||
Koh Zi Han, Cliff |
|||
komakino |
|||
Konstantin Lopuhin |
|||
koops |
|||
ks-ifware |
|||
kubelsmieci |
|||
KwanEsq |
|||
Lanfei |
|||
Lanny |
|||
Laszlo Vidacs |
|||
leaf corcoran |
|||
Leonid Khachaturov |
|||
Leon Sorokin |
|||
Leonya Khachaturov |
|||
Liam Newman |
|||
LM |
|||
lochel |
|||
Lorenzo Stoakes |
|||
Luciano Longo |
|||
Luke Stagner |
|||
lynschinzer |
|||
Maksim Lin |
|||
Maksym Taran |
|||
Malay Majithia |
|||
Manuel Rego Casasnovas |
|||
Marat Dreizin |
|||
Marcel Gerber |
|||
Marco Aurélio |
|||
Marco Munizaga |
|||
Marcus Bointon |
|||
Marek Rudnicki |
|||
Marijn Haverbeke |
|||
Mário Gonçalves |
|||
Mario Pietsch |
|||
Mark Lentczner |
|||
Marko Bonaci |
|||
Martin Balek |
|||
Martín Gaitán |
|||
Martin Hasoň |
|||
Mason Malone |
|||
Mateusz Paprocki |
|||
Mathias Bynens |
|||
mats cronqvist |
|||
Matthew Beale |
|||
Matthias Bussonnier |
|||
Matthias BUSSONNIER |
|||
Matt McDonald |
|||
Matt Pass |
|||
Matt Sacks |
|||
mauricio |
|||
Maximilian Hils |
|||
Maxim Kraev |
|||
Max Kirsch |
|||
Max Xiantu |
|||
mbarkhau |
|||
Metatheos |
|||
Micah Dubinko |
|||
Michael Lehenbauer |
|||
Michael Zhou |
|||
Mighty Guava |
|||
Miguel Castillo |
|||
mihailik |
|||
Mike |
|||
Mike Brevoort |
|||
Mike Diaz |
|||
Mike Ivanov |
|||
Mike Kadin |
|||
MinRK |
|||
Miraculix87 |
|||
misfo |
|||
mloginov |
|||
Moritz Schwörer |
|||
mps |
|||
mtaran-google |
|||
Narciso Jaramillo |
|||
Nathan Williams |
|||
ndr |
|||
nerbert |
|||
nextrevision |
|||
ngn |
|||
nguillaumin |
|||
Ng Zhi An |
|||
Nicholas Bollweg |
|||
Nicholas Bollweg (Nick) |
|||
Nick Small |
|||
Niels van Groningen |
|||
nightwing |
|||
Nikita Beloglazov |
|||
Nikita Vasilyev |
|||
Nikolay Kostov |
|||
nilp0inter |
|||
Nisarg Jhaveri |
|||
nlwillia |
|||
Norman Rzepka |
|||
pablo |
|||
Page |
|||
Panupong Pasupat |
|||
paris |
|||
Patil Arpith |
|||
Patrick Stoica |
|||
Patrick Strawderman |
|||
Paul Garvin |
|||
Paul Ivanov |
|||
Pavel Feldman |
|||
Pavel Strashkin |
|||
Paweł Bartkiewicz |
|||
peteguhl |
|||
Peter Flynn |
|||
peterkroon |
|||
Peter Kroon |
|||
prasanthj |
|||
Prasanth J |
|||
Radek Piórkowski |
|||
Rahul |
|||
Randall Mason |
|||
Randy Burden |
|||
Randy Edmunds |
|||
Rasmus Erik Voel Jensen |
|||
Ray Ratchup |
|||
Richard van der Meer |
|||
Richard Z.H. Wang |
|||
Robert Crossfield |
|||
Roberto Abdelkader Martínez Pérez |
|||
robertop23 |
|||
Robert Plummer |
|||
Ruslan Osmanov |
|||
Ryan Prior |
|||
sabaca |
|||
Samuel Ainsworth |
|||
sandeepshetty |
|||
Sander AKA Redsandro |
|||
santec |
|||
Sascha Peilicke |
|||
satchmorun |
|||
sathyamoorthi |
|||
SCLINIC\jdecker |
|||
Scott Aikin |
|||
Scott Goodhew |
|||
Sebastian Zaha |
|||
shaund |
|||
shaun gilchrist |
|||
Shawn A |
|||
sheopory |
|||
Shiv Deepak |
|||
Shmuel Englard |
|||
Shubham Jain |
|||
silverwind |
|||
snasa |
|||
soliton4 |
|||
sonson |
|||
spastorelli |
|||
srajanpaliwal |
|||
Stanislav Oaserele |
|||
Stas Kobzar |
|||
Stefan Borsje |
|||
Steffen Beyer |
|||
Steve O'Hara |
|||
stoskov |
|||
Taha Jahangir |
|||
Takuji Shimokawa |
|||
Tarmil |
|||
tel |
|||
tfjgeorge |
|||
Thaddee Tyl |
|||
TheHowl |
|||
think |
|||
Thomas Dvornik |
|||
Thomas Schmid |
|||
Tim Alby |
|||
Tim Baumann |
|||
Timothy Farrell |
|||
Timothy Hatcher |
|||
TobiasBg |
|||
Tomas-A |
|||
Tomas Varaneckas |
|||
Tom Erik Støwer |
|||
Tom MacWright |
|||
Tony Jian |
|||
Travis Heppe |
|||
Triangle717 |
|||
twifkak |
|||
Vestimir Markov |
|||
vf |
|||
Vincent Woo |
|||
Volker Mische |
|||
wenli |
|||
Wesley Wiser |
|||
Will Binns-Smith |
|||
William Jamieson |
|||
William Stein |
|||
Willy |
|||
Wojtek Ptak |
|||
Xavier Mendez |
|||
Yassin N. Hassan |
|||
YNH Webdev |
|||
Yunchi Luo |
|||
Yuvi Panda |
|||
Zachary Dremann |
|||
Zhang Hao |
|||
zziuni |
|||
魏鹏刚 |
@ -0,0 +1,19 @@ |
|||
Copyright (C) 2014 by Marijn Haverbeke <marijnh@gmail.com> and others |
|||
|
|||
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,12 @@ |
|||
# CodeMirror |
|||
[](https://travis-ci.org/codemirror/CodeMirror) |
|||
[](https://www.npmjs.org/package/codemirror) |
|||
[Funding status: ](https://marijnhaverbeke.nl/fund/) |
|||
|
|||
CodeMirror is a JavaScript component that provides a code editor in |
|||
the browser. When a mode is available for the language you are coding |
|||
in, it will color your code, and optionally help with indentation. |
|||
|
|||
The project page is http://codemirror.net |
|||
The manual is at http://codemirror.net/doc/manual.html |
|||
The contributing guidelines are in [CONTRIBUTING.md](https://github.com/codemirror/CodeMirror/blob/master/CONTRIBUTING.md) |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,16 @@ |
|||
{ |
|||
"name": "codemirror", |
|||
"version":"5.0.0", |
|||
"main": ["lib/codemirror.js", "lib/codemirror.css"], |
|||
"ignore": [ |
|||
"**/.*", |
|||
"node_modules", |
|||
"components", |
|||
"bin", |
|||
"demo", |
|||
"doc", |
|||
"test", |
|||
"index.html", |
|||
"package.json" |
|||
] |
|||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
@ -0,0 +1,180 @@ |
|||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|||
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|||
|
|||
// Author: Aliaksei Chapyzhenka
|
|||
|
|||
(function(mod) { |
|||
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
|||
mod(require("../../lib/codemirror")); |
|||
else if (typeof define == "function" && define.amd) // AMD
|
|||
define(["../../lib/codemirror"], mod); |
|||
else // Plain browser env
|
|||
mod(CodeMirror); |
|||
})(function(CodeMirror) { |
|||
"use strict"; |
|||
|
|||
function toWordList(words) { |
|||
var ret = []; |
|||
words.split(' ').forEach(function(e){ |
|||
ret.push({name: e}); |
|||
}); |
|||
return ret; |
|||
} |
|||
|
|||
var coreWordList = toWordList( |
|||
'INVERT AND OR XOR\ |
|||
2* 2/ LSHIFT RSHIFT\ |
|||
0= = 0< < > U< MIN MAX\ |
|||
2DROP 2DUP 2OVER 2SWAP ?DUP DEPTH DROP DUP OVER ROT SWAP\ |
|||
>R R> R@\ |
|||
+ - 1+ 1- ABS NEGATE\ |
|||
S>D * M* UM*\ |
|||
FM/MOD SM/REM UM/MOD */ */MOD / /MOD MOD\ |
|||
HERE , @ ! CELL+ CELLS C, C@ C! CHARS 2@ 2!\ |
|||
ALIGN ALIGNED +! ALLOT\ |
|||
CHAR [CHAR] [ ] BL\ |
|||
FIND EXECUTE IMMEDIATE COUNT LITERAL STATE\ |
|||
; DOES> >BODY\ |
|||
EVALUATE\ |
|||
SOURCE >IN\ |
|||
<# # #S #> HOLD SIGN BASE >NUMBER HEX DECIMAL\ |
|||
FILL MOVE\ |
|||
. CR EMIT SPACE SPACES TYPE U. .R U.R\ |
|||
ACCEPT\ |
|||
TRUE FALSE\ |
|||
<> U> 0<> 0>\ |
|||
NIP TUCK ROLL PICK\ |
|||
2>R 2R@ 2R>\ |
|||
WITHIN UNUSED MARKER\ |
|||
I J\ |
|||
TO\ |
|||
COMPILE, [COMPILE]\ |
|||
SAVE-INPUT RESTORE-INPUT\ |
|||
PAD ERASE\ |
|||
2LITERAL DNEGATE\ |
|||
D- D+ D0< D0= D2* D2/ D< D= DMAX DMIN D>S DABS\ |
|||
M+ M*/ D. D.R 2ROT DU<\ |
|||
CATCH THROW\ |
|||
FREE RESIZE ALLOCATE\ |
|||
CS-PICK CS-ROLL\ |
|||
GET-CURRENT SET-CURRENT FORTH-WORDLIST GET-ORDER SET-ORDER\ |
|||
PREVIOUS SEARCH-WORDLIST WORDLIST FIND ALSO ONLY FORTH DEFINITIONS ORDER\ |
|||
-TRAILING /STRING SEARCH COMPARE CMOVE CMOVE> BLANK SLITERAL'); |
|||
|
|||
var immediateWordList = toWordList('IF ELSE THEN BEGIN WHILE REPEAT UNTIL RECURSE [IF] [ELSE] [THEN] ?DO DO LOOP +LOOP UNLOOP LEAVE EXIT AGAIN CASE OF ENDOF ENDCASE'); |
|||
|
|||
CodeMirror.defineMode('forth', function() { |
|||
function searchWordList (wordList, word) { |
|||
var i; |
|||
for (i = wordList.length - 1; i >= 0; i--) { |
|||
if (wordList[i].name === word.toUpperCase()) { |
|||
return wordList[i]; |
|||
} |
|||
} |
|||
return undefined; |
|||
} |
|||
return { |
|||
startState: function() { |
|||
return { |
|||
state: '', |
|||
base: 10, |
|||
coreWordList: coreWordList, |
|||
immediateWordList: immediateWordList, |
|||
wordList: [] |
|||
}; |
|||
}, |
|||
token: function (stream, stt) { |
|||
var mat; |
|||
if (stream.eatSpace()) { |
|||
return null; |
|||
} |
|||
if (stt.state === '') { // interpretation
|
|||
if (stream.match(/^(\]|:NONAME)(\s|$)/i)) { |
|||
stt.state = ' compilation'; |
|||
return 'builtin compilation'; |
|||
} |
|||
mat = stream.match(/^(\:)\s+(\S+)(\s|$)+/); |
|||
if (mat) { |
|||
stt.wordList.push({name: mat[2].toUpperCase()}); |
|||
stt.state = ' compilation'; |
|||
return 'def' + stt.state; |
|||
} |
|||
mat = stream.match(/^(VARIABLE|2VARIABLE|CONSTANT|2CONSTANT|CREATE|POSTPONE|VALUE|WORD)\s+(\S+)(\s|$)+/i); |
|||
if (mat) { |
|||
stt.wordList.push({name: mat[2].toUpperCase()}); |
|||
return 'def' + stt.state; |
|||
} |
|||
mat = stream.match(/^(\'|\[\'\])\s+(\S+)(\s|$)+/); |
|||
if (mat) { |
|||
return 'builtin' + stt.state; |
|||
} |
|||
} else { // compilation
|
|||
// ; [
|
|||
if (stream.match(/^(\;|\[)(\s)/)) { |
|||
stt.state = ''; |
|||
stream.backUp(1); |
|||
return 'builtin compilation'; |
|||
} |
|||
if (stream.match(/^(\;|\[)($)/)) { |
|||
stt.state = ''; |
|||
return 'builtin compilation'; |
|||
} |
|||
if (stream.match(/^(POSTPONE)\s+\S+(\s|$)+/)) { |
|||
return 'builtin'; |
|||
} |
|||
} |
|||
|
|||
// dynamic wordlist
|
|||
mat = stream.match(/^(\S+)(\s+|$)/); |
|||
if (mat) { |
|||
if (searchWordList(stt.wordList, mat[1]) !== undefined) { |
|||
return 'variable' + stt.state; |
|||
} |
|||
|
|||
// comments
|
|||
if (mat[1] === '\\') { |
|||
stream.skipToEnd(); |
|||
return 'comment' + stt.state; |
|||
} |
|||
|
|||
// core words
|
|||
if (searchWordList(stt.coreWordList, mat[1]) !== undefined) { |
|||
return 'builtin' + stt.state; |
|||
} |
|||
if (searchWordList(stt.immediateWordList, mat[1]) !== undefined) { |
|||
return 'keyword' + stt.state; |
|||
} |
|||
|
|||
if (mat[1] === '(') { |
|||
stream.eatWhile(function (s) { return s !== ')'; }); |
|||
stream.eat(')'); |
|||
return 'comment' + stt.state; |
|||
} |
|||
|
|||
// // strings
|
|||
if (mat[1] === '.(') { |
|||
stream.eatWhile(function (s) { return s !== ')'; }); |
|||
stream.eat(')'); |
|||
return 'string' + stt.state; |
|||
} |
|||
if (mat[1] === 'S"' || mat[1] === '."' || mat[1] === 'C"') { |
|||
stream.eatWhile(function (s) { return s !== '"'; }); |
|||
stream.eat('"'); |
|||
return 'string' + stt.state; |
|||
} |
|||
|
|||
// numbers
|
|||
if (mat[1] - 0xfffffffff) { |
|||
return 'number' + stt.state; |
|||
} |
|||
// if (mat[1].match(/^[-+]?[0-9]+\.[0-9]*/)) {
|
|||
// return 'number' + stt.state;
|
|||
// }
|
|||
|
|||
return 'atom' + stt.state; |
|||
} |
|||
} |
|||
}; |
|||
}); |
|||
CodeMirror.defineMIME("text/x-forth", "forth"); |
|||
}); |
@ -0,0 +1,75 @@ |
|||
<!doctype html> |
|||
|
|||
<title>CodeMirror: Forth mode</title> |
|||
<meta charset="utf-8"/> |
|||
<link rel=stylesheet href="../../doc/docs.css"> |
|||
|
|||
<link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'> |
|||
<link rel="stylesheet" href="../../lib/codemirror.css"> |
|||
<link rel=stylesheet href="../../theme/colorforth.css"> |
|||
<script src="../../lib/codemirror.js"></script> |
|||
<script src="forth.js"></script> |
|||
<style> |
|||
.CodeMirror { |
|||
font-family: 'Droid Sans Mono', monospace; |
|||
font-size: 14px; |
|||
} |
|||
</style> |
|||
<div id=nav> |
|||
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a> |
|||
|
|||
<ul> |
|||
<li><a href="../../index.html">Home</a> |
|||
<li><a href="../../doc/manual.html">Manual</a> |
|||
<li><a href="https://github.com/codemirror/codemirror">Code</a> |
|||
</ul> |
|||
<ul> |
|||
<li><a href="../index.html">Language modes</a> |
|||
<li><a class=active href="#">Forth</a> |
|||
</ul> |
|||
</div> |
|||
|
|||
<article> |
|||
|
|||
<h2>Forth mode</h2> |
|||
|
|||
<form><textarea id="code" name="code"> |
|||
\ Insertion sort |
|||
|
|||
: cell- 1 cells - ; |
|||
|
|||
: insert ( start end -- start ) |
|||
dup @ >r ( r: v ) |
|||
begin |
|||
2dup < |
|||
while |
|||
r@ over cell- @ < |
|||
while |
|||
cell- |
|||
dup @ over cell+ ! |
|||
repeat then |
|||
r> swap ! ; |
|||
|
|||
: sort ( array len -- ) |
|||
1 ?do |
|||
dup i cells + insert |
|||
loop drop ;</textarea> |
|||
</form> |
|||
|
|||
<script> |
|||
var editor = CodeMirror.fromTextArea(document.getElementById("code"), { |
|||
lineNumbers: true, |
|||
lineWrapping: true, |
|||
indentUnit: 2, |
|||
tabSize: 2, |
|||
autofocus: true, |
|||
theme: "colorforth", |
|||
mode: "text/x-forth" |
|||
}); |
|||
</script> |
|||
|
|||
<p>Simple mode that handle Forth-Syntax (<a href="http://en.wikipedia.org/wiki/Forth_%28programming_language%29">Forth on WikiPedia</a>).</p> |
|||
|
|||
<p><strong>MIME types defined:</strong> <code>text/x-forth</code>.</p> |
|||
|
|||
</article> |
@ -0,0 +1,104 @@ |
|||
<!doctype html> |
|||
|
|||
<title>CodeMirror: Stylus mode</title> |
|||
<meta charset="utf-8"/> |
|||
<link rel=stylesheet href="../../doc/docs.css"> |
|||
<link rel="stylesheet" href="../../lib/codemirror.css"> |
|||
<link rel="stylesheet" href="../../addon/hint/show-hint.css"> |
|||
<script src="../../lib/codemirror.js"></script> |
|||
<script src="stylus.js"></script> |
|||
<script src="../../addon/hint/show-hint.js"></script> |
|||
<script src="../../addon/hint/css-hint.js"></script> |
|||
<style>.CodeMirror {background: #f8f8f8;} form{margin-bottom: .7em;}</style> |
|||
<div id=nav> |
|||
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a> |
|||
|
|||
<ul> |
|||
<li><a href="../../index.html">Home</a> |
|||
<li><a href="../../doc/manual.html">Manual</a> |
|||
<li><a href="https://github.com/codemirror/codemirror">Code</a> |
|||
</ul> |
|||
<ul> |
|||
<li><a href="../index.html">Language modes</a> |
|||
<li><a class=active href="#">Stylus</a> |
|||
</ul> |
|||
</div> |
|||
|
|||
<article> |
|||
<h2>Stylus mode</h2> |
|||
<form><textarea id="code" name="code"> |
|||
/* Stylus mode */ |
|||
#id |
|||
.class |
|||
article |
|||
font-family Arial, sans-serif |
|||
|
|||
#id, |
|||
.class, |
|||
article { |
|||
font-family: Arial, sans-serif; |
|||
} |
|||
|
|||
// Variables |
|||
font-size-base = 16px |
|||
line-height-base = 1.5 |
|||
font-family-base = "Helvetica Neue", Helvetica, Arial, sans-serif |
|||
text-color = lighten(#000, 20%) |
|||
|
|||
body |
|||
font font-size-base/line-height-base font-family-base |
|||
color text-color |
|||
|
|||
body { |
|||
font: 400 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif; |
|||
color: #333; |
|||
} |
|||
|
|||
// Variables |
|||
link-color = darken(#428bca, 6.5%) |
|||
link-hover-color = darken(link-color, 15%) |
|||
link-decoration = none |
|||
link-hover-decoration = false |
|||
|
|||
// Mixin |
|||
tab-focus() |
|||
outline thin dotted |
|||
outline 5px auto -webkit-focus-ring-color |
|||
outline-offset -2px |
|||
|
|||
a |
|||
color link-color |
|||
if link-decoration |
|||
text-decoration link-decoration |
|||
&:hover |
|||
&:focus |
|||
color link-hover-color |
|||
if link-hover-decoration |
|||
text-decoration link-hover-decoration |
|||
&:focus |
|||
tab-focus() |
|||
|
|||
a { |
|||
color: #3782c4; |
|||
text-decoration: none; |
|||
} |
|||
a:hover, |
|||
a:focus { |
|||
color: #2f6ea7; |
|||
} |
|||
a:focus { |
|||
outline: thin dotted; |
|||
outline: 5px auto -webkit-focus-ring-color; |
|||
outline-offset: -2px; |
|||
} |
|||
</textarea> |
|||
</form> |
|||
<script> |
|||
var editor = CodeMirror.fromTextArea(document.getElementById("code"), { |
|||
extraKeys: {"Ctrl-Space": "autocomplete"}, |
|||
}); |
|||
</script> |
|||
|
|||
<p><strong>MIME types defined:</strong> <code>text/x-styl</code>.</p> |
|||
|
|||
</article> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,21 @@ |
|||
{ |
|||
"name": "codemirror", |
|||
"version":"5.0.0", |
|||
"main": "lib/codemirror.js", |
|||
"description": "In-browser code editing made bearable", |
|||
"licenses": [{"type": "MIT", |
|||
"url": "http://codemirror.net/LICENSE"}], |
|||
"directories": {"lib": "./lib"}, |
|||
"scripts": {"test": "node ./test/run.js"}, |
|||
"devDependencies": {"node-static": "0.6.0", |
|||
"phantomjs": "1.9.2-5", |
|||
"blint": ">=0.1.1"}, |
|||
"bugs": "http://github.com/codemirror/CodeMirror/issues", |
|||
"keywords": ["JavaScript", "CodeMirror", "Editor"], |
|||
"homepage": "http://codemirror.net", |
|||
"maintainers":[{"name": "Marijn Haverbeke", |
|||
"email": "marijnh@gmail.com", |
|||
"web": "http://marijnhaverbeke.nl"}], |
|||
"repository": {"type": "git", |
|||
"url": "https://github.com/codemirror/CodeMirror.git"} |
|||
} |
@ -0,0 +1,33 @@ |
|||
.cm-s-colorforth.CodeMirror { background: #000000; color: #f8f8f8; } |
|||
.cm-s-colorforth .CodeMirror-gutters { background: #0a001f; border-right: 1px solid #aaa; } |
|||
.cm-s-colorforth .CodeMirror-guttermarker { color: #FFBD40; } |
|||
.cm-s-colorforth .CodeMirror-guttermarker-subtle { color: #78846f; } |
|||
.cm-s-colorforth .CodeMirror-linenumber { color: #bababa; } |
|||
.cm-s-colorforth .CodeMirror-cursor { border-left: 1px solid white !important; } |
|||
|
|||
.cm-s-colorforth span.cm-comment { color: #ededed; } |
|||
.cm-s-colorforth span.cm-def { color: #ff1c1c; font-weight:bold; } |
|||
.cm-s-colorforth span.cm-keyword { color: #ffd900; } |
|||
.cm-s-colorforth span.cm-builtin { color: #00d95a; } |
|||
.cm-s-colorforth span.cm-variable { color: #73ff00; } |
|||
.cm-s-colorforth span.cm-string { color: #007bff; } |
|||
.cm-s-colorforth span.cm-number { color: #00c4ff; } |
|||
.cm-s-colorforth span.cm-atom { color: #606060; } |
|||
|
|||
.cm-s-colorforth span.cm-variable-2 { color: #EEE; } |
|||
.cm-s-colorforth span.cm-variable-3 { color: #DDD; } |
|||
.cm-s-colorforth span.cm-property {} |
|||
.cm-s-colorforth span.cm-operator {} |
|||
|
|||
.cm-s-colorforth span.cm-meta { color: yellow; } |
|||
.cm-s-colorforth span.cm-qualifier { color: #FFF700; } |
|||
.cm-s-colorforth span.cm-bracket { color: #cc7; } |
|||
.cm-s-colorforth span.cm-tag { color: #FFBD40; } |
|||
.cm-s-colorforth span.cm-attribute { color: #FFF700; } |
|||
.cm-s-colorforth span.cm-error { color: #f00; } |
|||
|
|||
.cm-s-colorforth .CodeMirror-selected { background: #333d53 !important; } |
|||
|
|||
.cm-s-colorforth span.cm-compilation { background: rgba(255, 255, 255, 0.12); } |
|||
|
|||
.cm-s-colorforth .CodeMirror-activeline-background {background: #253540 !important;} |
@ -0,0 +1,35 @@ |
|||
/* |
|||
|
|||
Name: Tomorrow Night - Bright |
|||
Author: Chris Kempson |
|||
|
|||
Port done by Gerard Braad <me@gbraad.nl> |
|||
|
|||
*/ |
|||
|
|||
.cm-s-tomorrow-night-bright.CodeMirror {background: #000000; color: #eaeaea;} |
|||
.cm-s-tomorrow-night-bright div.CodeMirror-selected {background: #424242 !important;} |
|||
.cm-s-tomorrow-night-bright .CodeMirror-gutters {background: #000000; border-right: 0px;} |
|||
.cm-s-tomorrow-night-bright .CodeMirror-guttermarker { color: #e78c45; } |
|||
.cm-s-tomorrow-night-bright .CodeMirror-guttermarker-subtle { color: #777; } |
|||
.cm-s-tomorrow-night-bright .CodeMirror-linenumber {color: #424242;} |
|||
.cm-s-tomorrow-night-bright .CodeMirror-cursor {border-left: 1px solid #6A6A6A !important;} |
|||
|
|||
.cm-s-tomorrow-night-bright span.cm-comment {color: #d27b53;} |
|||
.cm-s-tomorrow-night-bright span.cm-atom {color: #a16a94;} |
|||
.cm-s-tomorrow-night-bright span.cm-number {color: #a16a94;} |
|||
|
|||
.cm-s-tomorrow-night-bright span.cm-property, .cm-s-tomorrow-night-bright span.cm-attribute {color: #99cc99;} |
|||
.cm-s-tomorrow-night-bright span.cm-keyword {color: #d54e53;} |
|||
.cm-s-tomorrow-night-bright span.cm-string {color: #e7c547;} |
|||
|
|||
.cm-s-tomorrow-night-bright span.cm-variable {color: #b9ca4a;} |
|||
.cm-s-tomorrow-night-bright span.cm-variable-2 {color: #7aa6da;} |
|||
.cm-s-tomorrow-night-bright span.cm-def {color: #e78c45;} |
|||
.cm-s-tomorrow-night-bright span.cm-bracket {color: #eaeaea;} |
|||
.cm-s-tomorrow-night-bright span.cm-tag {color: #d54e53;} |
|||
.cm-s-tomorrow-night-bright span.cm-link {color: #a16a94;} |
|||
.cm-s-tomorrow-night-bright span.cm-error {background: #d54e53; color: #6A6A6A;} |
|||
|
|||
.cm-s-tomorrow-night-bright .CodeMirror-activeline-background {background: #2a2a2a !important;} |
|||
.cm-s-tomorrow-night-bright .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue