Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthieu Boileau
nbcourse
Commits
5dfdc8e0
Commit
5dfdc8e0
authored
Nov 19, 2020
by
Matthieu Boileau
Browse files
Merge branch 'develop' into 'master'
0.3.3 See merge request
!22
parents
bd5f9add
d3ab4367
Pipeline
#10535
passed with stages
in 1 minute and 55 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
5dfdc8e0
# Changelog
## [0.3.3] - 2020-11-19
### Changed
*
Fix bug in HTML template due to new nbconvert
*
Fix bug in REVEAL url
## [0.3.2] - 2020-11-06
### Changed
...
...
nbcourse/__init__.py
View file @
5dfdc8e0
...
...
@@ -6,4 +6,4 @@ import logging
log
=
logging
.
getLogger
(
__name__
)
logging
.
basicConfig
(
level
=
logging
.
INFO
)
__version__
=
'0.3.2'
\ No newline at end of file
__version__
=
'0.3.3'
nbcourse/nbcourse.py
View file @
5dfdc8e0
...
...
@@ -110,16 +110,12 @@ No notebooks found!
Path
(
self
.
conf
[
'slug_title'
]).
with_suffix
(
'.zip'
)
# Instantiate notebook exporter
self
.
html_exporter
=
HTMLExporter
()
self
.
html_exporter
=
HTMLExporter
(
template_name
=
'classic'
)
# Instantiate slide exporter
self
.
slide_exporter
=
SlidesExporter
()
reveal_url
=
\
"https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.7.0"
if
self
.
conf
[
'local_reveal'
]:
self
.
slide_exporter
.
reveal_url_prefix
=
'reveal.js'
else
:
self
.
slide_exporter
.
reveal_url_prefix
=
reveal_url
def
_get_config
(
self
,
user_conf
):
"""Get conf dict from default and user_conf"""
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment