- Dec 08, 2014
-
-
Greg Wilson authored
-
- Dec 03, 2014
-
-
Greg Wilson authored
Splitting lesson instructions
-
Greg Wilson authored
-
- Nov 27, 2014
-
-
Raniere Silva authored
Prereq divs
-
Aaron O'Leary authored
This means that you can trigger div creation by 1. Using a special title 2. Using a special class on an arbitrary title
-
- Nov 26, 2014
-
-
Raniere Silva authored
- Use UPPERCASE for global constants - Add Learning Objectives to SPECIAL_TITLES - Fix samples
-
Aaron O'Leary authored
Previously, Div creation was triggered by a Blockquote that began with a header that contained a single class that was in a list of special classes. Now, Div creation is *also* triggered by a Blockquote that begins with a header that has it's text contained in a list of special titles. The title is used to lookup an appropriate class to give the Div. In particular, 'prerequesites' is a special title, giving the class 'prereq'. This input: > ## Prerequesites > > A short paragraph describing what learners need to know before > tackling this lesson. will trigger this output: <div id="prerequisites" class="prereq"> <h2>Prerequisites</h2> <p>A short paragraph describing what learners need to know before tackling this lesson.</p> </div>
-
Aaron O'Leary authored
-
Greg Wilson authored
making python script runnable for pandoc
-
- Nov 25, 2014
-
-
Rémi Emonet authored
-
Rémi Emonet authored
-
- Nov 18, 2014
-
-
Raniere Silva authored
Fix template layout
-
- Nov 17, 2014
-
-
Greg Wilson authored
-
Greg Wilson authored
Building validator for lesson contents
-
Greg Wilson authored
-
Greg Wilson authored
-
Greg Wilson authored
-
Greg Wilson authored
-
- Nov 16, 2014
-
-
Greg Wilson authored
Set up code color
-
Greg Wilson authored
Remove border bottom from title
-
Raniere Silva authored
and others small fixes.
-
Raniere Silva authored
The body variable at Pandoc template **must** not be indented because the indentation will propagate into the HTML. Example: $ cat page.html <!DOCTYPE html> <html> <body> $body$ </body> </html> $ pandoc -s -t html --template=page -o sample.html sample.md $ cat sample.html <!DOCTYPE html> <html> <body> <pre><code>def foo(): return None</code></pre> </body> </html> Solution: $ cat fix.html <!DOCTYPE html> <html> <body> $body$ </body> </html> $ pandoc -s -t html --template=fix -o sample-fix.html sample.md $ cat sample-fix.html <!DOCTYPE html> <html> <body> <pre><code>def foo(): return None</code></pre> </body> </html>
-
Raniere Silva authored
-
Raniere Silva authored
-
Raniere Silva authored
Changing sed command used to display help from Makefile.
-
- Nov 15, 2014
-
-
Greg Wilson authored
As per https://github.com/swcarpentry/workshop-template/pull/53, this PR is more selective about what it does and doesn't print.
-
Greg Wilson authored
-
- Nov 14, 2014
-
-
Raniere Silva authored
-
Greg Wilson authored
Clean CSS file
-
Greg Wilson authored
-
Greg Wilson authored
-
Greg Wilson authored
Improving setup instructions
-
Greg Wilson authored
Multiple changes based on converting Make lesson to template
-
- Nov 13, 2014
-
-
Raniere Silva authored
-
Greg Wilson authored
-
Greg Wilson authored
1. Moving the build steps up to the top of `README.md`. 2. Removed the misleading target to run the checking tool (since the tool doesn't actually work).
-
Greg Wilson authored
And taking it out of the auto-displayed list of available commands.
-
Greg Wilson authored
-
Greg Wilson authored
-
Greg Wilson authored
-