Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Lesson Template
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
prace-lessons
Lesson Template
Commits
93764fa9
Commit
93764fa9
authored
8 years ago
by
Greg Wilson
Browse files
Options
Downloads
Plain Diff
Merge branch '2016-06' of github.com:swcarpentry/styles into 2016-06
parents
7f834e99
600e4a3f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+3
-2
3 additions, 2 deletions
Makefile
bin/lesson_initialize.py
+6
-1
6 additions, 1 deletion
bin/lesson_initialize.py
bin/markdown_ast.rb
+0
-0
0 additions, 0 deletions
bin/markdown_ast.rb
with
9 additions
and
3 deletions
Makefile
+
3
−
2
View file @
93764fa9
...
...
@@ -4,6 +4,7 @@
# Settings
MAKEFILES
=
Makefile
$(
wildcard
*
.mk
)
JEKYLL
=
jekyll
PARSER
=
bin/markdown_ast.rb
DST
=
_site
# Controls
...
...
@@ -24,7 +25,7 @@ site :
## figures : re-generate inclusion displaying all figures.
figures
:
@
bin/extract_figures.py
-s
_episodes
-p
bin/markdown-ast.rb
>
_includes/all_figures.html
@
bin/extract_figures.py
-s
_episodes
-p
${
PARSER
}
>
_includes/all_figures.html
## clean : clean up junk files.
clean
:
...
...
@@ -71,7 +72,7 @@ HTML_FILES = \
## lesson-check : validate lesson Markdown.
lesson-check
:
@
bin/lesson_check.py
-s
.
-p
bin/markdown-ast.rb
@
bin/lesson_check.py
-s
.
-p
${
PARSER
}
unittest
:
python bin/test_lesson_check.py
...
...
This diff is collapsed.
Click to expand it.
bin/lesson_initialize.py
+
6
−
1
View file @
93764fa9
...
...
@@ -315,6 +315,10 @@ permalink: /guide/
FIXME
'''
INCLUDES_ALL_FIGURES_HTML
=
'''
\
<!-- empty -->
'''
BOILERPLATE
=
(
(
'
AUTHORS
'
,
ROOT_AUTHORS
),
(
'
CITATION
'
,
ROOT_CITATION
),
...
...
@@ -327,7 +331,8 @@ BOILERPLATE = (
(
'
_extras/about.md
'
,
EXTRAS_ABOUT_MD
),
(
'
_extras/discuss.md
'
,
EXTRAS_DISCUSS_MD
),
(
'
_extras/figures.md
'
,
EXTRAS_FIGURES_MD
),
(
'
_extras/guide.md
'
,
EXTRAS_GUIDE_MD
)
(
'
_extras/guide.md
'
,
EXTRAS_GUIDE_MD
),
(
'
_includes/all_figures.html
'
,
INCLUDES_ALL_FIGURES_HTML
)
)
...
...
This diff is collapsed.
Click to expand it.
bin/markdown
-
ast.rb
→
bin/markdown
_
ast.rb
+
0
−
0
View file @
93764fa9
File moved
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment