Skip to content

Commit 2c2ceee

Browse files
committed
initial commit
0 parents  commit 2c2ceee

7 files changed

+196
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
node_modules

LICENSE

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2017, CoderDojo Rotterdam (SF)
2+
3+
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:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
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.

README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# CoderDojo Workshop Core
2+
3+
A basic workshop package that converts Markdown to PDF using CoderDojo Rotterdam (SF) theming.
4+
5+
## Install
6+
- Create a new folder that'll hold your manual
7+
- `cd` into your folder and run `npm init -y` to initialize a new node project
8+
- Pull in this core dependency by running:
9+
`npm install coderdojorotterdam-workshop-core --save`
10+
11+
## Config
12+
In your `package.json` you can override the input and output files by adding this segment to it:
13+
14+
```json
15+
"coderdojo_workshop_options": {
16+
"file_in": "love2d_lua_installatie.md",
17+
"file_out": "love2d_lua_installatie.pdf"
18+
}
19+
```
20+
21+
## Run
22+
To run the converter, easiest thing is to link to the `.bin/core` in the package.json start script like so:
23+
24+
```json
25+
"scripts": {
26+
"start": "./node_modules/.bin/core"
27+
}
28+
```
29+
30+
Run `npm start` to start the conversion.
31+
32+
## Examples
33+
To get a general idea on how to use this, have a look at some examples:
34+
- Installing Love2D, Lua & Atom [TBA]
35+
- Building Pong using Love2D and Lua [TBA]
36+
37+
## Components
38+
All markdown tags are supported as well as custom styling using HTML / CSS. For available CSS classes have a look in our [CSS file](main.css).
39+
40+
## License
41+
[MIT](LICENSE)

index.js

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#! /usr/bin/env node
2+
3+
const markdownpdf = require('markdown-pdf');
4+
const hljs = require('highlight.js');
5+
const classy = require('remarkable-classy');
6+
const path = require('path');
7+
const fs = require('fs');
8+
9+
// setup default PDF options
10+
const pdfOptions = {
11+
cssPath: path.join(__dirname, 'main.css'),
12+
paperBorder: '2cm',
13+
runningsPath: path.join(__dirname, 'runnings.js'),
14+
remarkable: {
15+
html: true,
16+
breaks: true,
17+
plugins: [classy],
18+
syntax: ['footnote', 'sup', 'sub'],
19+
20+
highlight: (str, lang) => {
21+
if (lang && hljs.getLanguage(lang)) {
22+
try {
23+
return hljs.highlight(lang, str).value;
24+
} catch (err) {}
25+
}
26+
27+
try {
28+
return hljs.highlightAuto(str).value;
29+
} catch (err) {}
30+
31+
return ''; // use external default escaping
32+
}
33+
34+
}
35+
};
36+
37+
// create a default config and read overrides from consumers package.json
38+
const contents = fs.readFileSync(path.join(process.cwd(), 'package.json'));
39+
const package = JSON.parse(contents.toString('utf8'));
40+
41+
const defaultConfig = {
42+
file_in: 'input.md',
43+
file_out: 'output.pdf'
44+
};
45+
46+
const config = Object.assign(defaultConfig, package.coderdojo_workshop_options);
47+
48+
// convert markdown to pdf
49+
markdownpdf(pdfOptions)
50+
.from(config.file_in)
51+
.to(config.file_out);

main.css

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
2+
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700');
3+
4+
html, body {
5+
font-family: 'Roboto Slab', serif;
6+
color: #333333;
7+
}
8+
9+
h1, h2, h3, h4, h5, h6 {
10+
font-family: 'Open Sans', sans-serif;
11+
margin: 0px
12+
}
13+
14+
/* First page have different H1 and H2 styles */
15+
h1.first-page {
16+
font-size: 3em;
17+
text-align: center;
18+
}
19+
20+
h2.first-page {
21+
font-size: 1.8em;
22+
color: #888888;
23+
text-align: center;
24+
}
25+
26+
/* Hyperlinks have a CoderDojo green styling */
27+
.green {
28+
color: #5b8737;
29+
}
30+
31+
/* Use the .pagebreak to force a new page */
32+
.pagebreak {
33+
page-break-after: always;
34+
}
35+
36+
.underline {
37+
text-decoration: underline;
38+
}
39+
40+
/* Info blocks have a blue-ish color */
41+
.info {
42+
background-color: #d6eeff;
43+
border: 1px solid #86A9C2;
44+
padding: 10px;
45+
}
46+
47+
pre {
48+
background-color: #FDF7E3;
49+
border: 1px solid #f6db83;
50+
padding: 10px;
51+
font-size: 10px;
52+
}
53+
54+
/* For bold text we're using Georgia since our Google font's bold is broken in PhantomJS */
55+
.bold {
56+
font-family: Georgia, serif;
57+
font-weight: bold;
58+
}
59+
60+
/* For printing medium and small images. Often used with center */
61+
.medium-image {
62+
width: 70%;
63+
}
64+
65+
.small-image {
66+
width: 40%
67+
}
68+
69+
.center {
70+
text-align: center;
71+
}

package.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "coderdojorotterdam-workshop-core",
3+
"version": "1.0.0",
4+
"description": "A basic workshop package that converts Markdown to PDF using CoderDojo Rotterdam (SF) theming",
5+
"main": "index.js",
6+
"bin": {
7+
"core": "./index.js"
8+
},
9+
"author": "Tiemen Waterreus",
10+
"license": "MIT",
11+
"dependencies": {
12+
"highlight.js": "^9.9.0",
13+
"remarkable-classy": "0.0.1",
14+
"markdown-pdf": "^7.0.0"
15+
}
16+
}

runnings.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
exports.header = null;
2+
3+
exports.footer = {
4+
height: '1cm',
5+
contents: function(pageNum, numPages){
6+
return '<footer style="font-size: 10px"><span style="float:right">Pagina '+pageNum+' van '+numPages+'</span></footer>';
7+
}
8+
}

0 commit comments

Comments
 (0)