Ajout base formation Javascript
This commit is contained in:
42
javascript/bower_components/remark/.bower.json
vendored
Normal file
42
javascript/bower_components/remark/.bower.json
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "remark",
|
||||
"homepage": "http://remarkjs.com/",
|
||||
"authors": [
|
||||
"Ole Petter Bang <olepbang@gmail.com>"
|
||||
],
|
||||
"description": "A simple, in-browser, markdown-driven slideshow tool.",
|
||||
"main": "out/remark.js",
|
||||
"keywords": [
|
||||
"Markdown",
|
||||
"Slides"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
".gitignore",
|
||||
".gitmodules",
|
||||
".jshintignore",
|
||||
".jshintrc",
|
||||
"HISTORY.md",
|
||||
"LICENSE",
|
||||
"make.js",
|
||||
"Makefile",
|
||||
"package.json",
|
||||
"bower_components",
|
||||
"node_modules",
|
||||
"src",
|
||||
"test",
|
||||
"vendor",
|
||||
"out/tests.js"
|
||||
],
|
||||
"version": "0.10.2",
|
||||
"_release": "0.10.2",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v0.10.2",
|
||||
"commit": "359f491fae0e53b2e8102b6a264a236fc28b5480"
|
||||
},
|
||||
"_source": "https://github.com/gnab/remark.git",
|
||||
"_target": "~0.10.2",
|
||||
"_originalSource": "remark",
|
||||
"_direct": true
|
||||
}
|
3
javascript/bower_components/remark/.travis.yml
vendored
Normal file
3
javascript/bower_components/remark/.travis.yml
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "0.10"
|
20
javascript/bower_components/remark/LICENCE
vendored
Normal file
20
javascript/bower_components/remark/LICENCE
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
Copyright (c) 2011-2013 Ole Petter Bang <olepbang@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.
|
116
javascript/bower_components/remark/README.md
vendored
Normal file
116
javascript/bower_components/remark/README.md
vendored
Normal file
@ -0,0 +1,116 @@
|
||||
# remark
|
||||
|
||||
[](https://travis-ci.org/gnab/remark)
|
||||
|
||||
A simple, in-browser, markdown-driven slideshow tool targeted at people who know their way around HTML and CSS, featuring:
|
||||
|
||||
- Markdown formatting, with smart extensions
|
||||
- Presenter mode, with cloned slideshow view
|
||||
- Syntax highlighting, supporting a range of languages
|
||||
- Slide scaling, thus similar appearance on all devices / resolutions
|
||||
- Touch support for smart phones and pads, i.e. swipe to navigate slides
|
||||
|
||||
Check out [this remark slideshow](http://gnab.github.com/remark) for a brief introduction.
|
||||
|
||||
To render your Markdown-based slideshow on the fly, checkout [Remarkise](https://gnab.github.io/remark/remarkise).
|
||||
|
||||
### Getting Started
|
||||
|
||||
It takes only a few, simple steps to get up and running with remark:
|
||||
|
||||
1. Create a HTML file to contain your slideshow (see below)
|
||||
2. Open the HTML file in a decent browser
|
||||
3. Edit the Markdown and/or CSS styles as needed, save and refresh!
|
||||
|
||||
Below is a boilerplate HTML file to get you started:
|
||||
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Title</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
|
||||
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
|
||||
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
|
||||
|
||||
body { font-family: 'Droid Serif'; }
|
||||
h1, h2, h3 {
|
||||
font-family: 'Yanone Kaffeesatz';
|
||||
font-weight: normal;
|
||||
}
|
||||
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<textarea id="source">
|
||||
|
||||
class: center, middle
|
||||
|
||||
# Title
|
||||
|
||||
---
|
||||
|
||||
# Agenda
|
||||
|
||||
1. Introduction
|
||||
2. Deep-dive
|
||||
3. ...
|
||||
|
||||
---
|
||||
|
||||
# Introduction
|
||||
|
||||
</textarea>
|
||||
<script src="https://gnab.github.io/remark/downloads/remark-latest.min.js">
|
||||
</script>
|
||||
<script>
|
||||
var slideshow = remark.create();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
### Moving On
|
||||
|
||||
For more information on using remark, please check out the [wiki](http://github.com/gnab/remark/wiki) pages.
|
||||
|
||||
### Real-world remark slideshows
|
||||
|
||||
On using remark:
|
||||
|
||||
- [The Official remark Slideshow](http://gnab.github.com/remark)
|
||||
- [Coloured Terminal Listings in remark](http://joshbode.github.com/remark/ansi.html) by [joshbode](https://github.com/joshbode)
|
||||
|
||||
Other interesting stuff:
|
||||
|
||||
- [gnab.github.com/editorjs](http://gnab.github.com/editorjs)
|
||||
- [judoole.github.com/GroovyBDD](http://judoole.github.com/GroovyBDD)
|
||||
- [kjbekkelund.github.com/nith-coffeescript](http://kjbekkelund.github.com/nith-coffeescript)
|
||||
- [kjbekkelund.github.com/js-architecture-backbone](http://kjbekkelund.github.com/js-architecture-backbone)
|
||||
- [bekkopen.github.com/infrastruktur-som-kode](http://bekkopen.github.com/infrastruktur-som-kode)
|
||||
- [ivarconr.github.com/Test-Driven-Web-Development/slides](http://ivarconr.github.com/Test-Driven-Web-Development/slides)
|
||||
- [havard.github.com/node.js-intro-norwegian](http://havard.github.com/node.js-intro-norwegian)
|
||||
- [mobmad.github.com/js-tdd-erfaringer](http://mobmad.github.com/js-tdd-erfaringer)
|
||||
- [torgeir.github.com/busterjs-lightning-talk](http://torgeir.github.com/busterjs-lightning-talk)
|
||||
- [roberto.github.com/ruby-sinform-2012](http://roberto.github.com/ruby-sinform-2012)
|
||||
- [http://asmeurer.github.io/python3-presentation/slides.html](http://asmeurer.github.io/python3-presentation/slides.html)
|
||||
|
||||
### Other systems integrating with remark
|
||||
|
||||
- [http://platon.io](http://platon.io)
|
||||
- [http://markdowner.com](http://markdowner.com)
|
||||
- [http://remarks.sinaapp.com](http://remarks.sinaapp.com/)
|
||||
|
||||
### Credits
|
||||
|
||||
- [torgeir](http://github.com/torgeir), for invaluable advice and feedback.
|
||||
- [kjbekkelund](https://github.com/kjbekkelund), for numerous pull requests.
|
||||
- [gureckis](https://github.com/gureckis), for several pull requests.
|
||||
- [freakboy3742](https://github.com/freakboy3742), for several pull requests.
|
||||
|
||||
### License
|
||||
|
||||
remark is licensed under the MIT license. See LICENSE for further
|
||||
details.
|
50
javascript/bower_components/remark/boilerplate-local.html
vendored
Normal file
50
javascript/bower_components/remark/boilerplate-local.html
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>My Awesome Presentation</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<style type="text/css">
|
||||
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
|
||||
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
|
||||
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
|
||||
|
||||
body { font-family: 'Droid Serif'; }
|
||||
h1, h2, h3 {
|
||||
font-family: 'Yanone Kaffeesatz';
|
||||
font-weight: normal;
|
||||
}
|
||||
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<textarea id="source">
|
||||
|
||||
class: center, middle
|
||||
|
||||
# My Awesome Presentation
|
||||
|
||||
???
|
||||
|
||||
Notes for the _first_ slide!
|
||||
|
||||
---
|
||||
|
||||
# Agenda
|
||||
|
||||
1. Introduction
|
||||
2. Deep-dive
|
||||
3. ...
|
||||
|
||||
[NOTE]: Note that you need remark.js alongside this html file, but no internet connection.
|
||||
---
|
||||
|
||||
# Introduction
|
||||
|
||||
</textarea>
|
||||
<script src="out/remark.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var slideshow = remark.create();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
46
javascript/bower_components/remark/boilerplate-remote.html
vendored
Normal file
46
javascript/bower_components/remark/boilerplate-remote.html
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>My Awesome Presentation</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<style type="text/css">
|
||||
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
|
||||
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
|
||||
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
|
||||
|
||||
body { font-family: 'Droid Serif'; }
|
||||
h1, h2, h3 {
|
||||
font-family: 'Yanone Kaffeesatz';
|
||||
font-weight: normal;
|
||||
}
|
||||
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<textarea id="source">
|
||||
|
||||
class: center, middle
|
||||
|
||||
# My Awesome Presentation
|
||||
|
||||
---
|
||||
|
||||
# Agenda
|
||||
|
||||
1. Introduction
|
||||
2. Deep-dive
|
||||
3. ...
|
||||
|
||||
[NOTE]: Note that you need active internet connection to access remark.js script file
|
||||
---
|
||||
|
||||
# Introduction
|
||||
|
||||
</textarea>
|
||||
<script src="http://gnab.github.io/remark/downloads/remark-0.5.9.min.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var slideshow = remark.create();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
44
javascript/bower_components/remark/boilerplate-single.html
vendored
Normal file
44
javascript/bower_components/remark/boilerplate-single.html
vendored
Normal file
File diff suppressed because one or more lines are too long
31
javascript/bower_components/remark/bower.json
vendored
Normal file
31
javascript/bower_components/remark/bower.json
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "remark",
|
||||
"homepage": "http://remarkjs.com/",
|
||||
"authors": [
|
||||
"Ole Petter Bang <olepbang@gmail.com>"
|
||||
],
|
||||
"description": "A simple, in-browser, markdown-driven slideshow tool.",
|
||||
"main": "out/remark.js",
|
||||
"keywords": [
|
||||
"Markdown",
|
||||
"Slides"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
".gitignore",
|
||||
".gitmodules",
|
||||
".jshintignore",
|
||||
".jshintrc",
|
||||
"HISTORY.md",
|
||||
"LICENSE",
|
||||
"make.js",
|
||||
"Makefile",
|
||||
"package.json",
|
||||
"bower_components",
|
||||
"node_modules",
|
||||
"src",
|
||||
"test",
|
||||
"vendor",
|
||||
"out/tests.js"
|
||||
]
|
||||
}
|
6491
javascript/bower_components/remark/out/remark.js
vendored
Normal file
6491
javascript/bower_components/remark/out/remark.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
javascript/bower_components/remark/out/remark.min.js
vendored
Normal file
6
javascript/bower_components/remark/out/remark.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user