5 files changed +724
-633
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
83
83
84
84
Resulting in a folder structure like the following:
85
85
86
- ```
86
+ ```text
87
87
- .vscode
88
88
- coderoad (test runner files only with their own setup)
89
89
- package.json
@@ -114,7 +114,7 @@ Resulting in a folder structure like the following:
114
114
115
115
- New configuration environment variables for web compatability
116
116
117
- ```
117
+ ```text
118
118
CODEROAD_DISABLE_RUN_ON_SAVE=true // blocks saving on file system changes
119
119
CODEROAD_DISPLAY_RUN_TEST_BUTTON=true // adds a run test button to tutorial page
120
120
CODEROAD_TUTORIAL_URL='path/to/tutorial_config_file.json' // will load directly into tutorial
@@ -157,3 +157,21 @@ CODEROAD_TUTORIAL_URL='path/to/tutorial_config_file.json' // will load directly
157
157
}
158
158
}
159
159
```
160
+
161
+ ### [0.8.0]
162
+
163
+ - Support Python with using [tap.py](https://github.com/python-tap/tappy)
164
+ - Fix paragraph spacing
165
+ - Support hints - clues that reveal on click to help guide users. Hints can be added to a step, see an example below.
166
+
167
+ ```md
168
+ ### 1.1
169
+
170
+ A description of the task.
171
+
172
+ #### HINTS
173
+
174
+ - The first hint
175
+ - The second hint
176
+ - The last hint
177
+ ```
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " coderoad" ,
3
- "version" : " 0.7.2 " ,
3
+ "version" : " 0.8.0 " ,
4
4
"description" : " Play interactive coding tutorials in your editor" ,
5
5
"keywords" : [
6
6
" tutorial" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " coderoad-app" ,
3
- "version" : " 0.7.2 " ,
3
+ "version" : " 0.8.0 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"build" : " react-app-rewired build" ,
0 commit comments