Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RMarkdown/RNotebook support #86

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e159e14
update .gitignore
grst Nov 2, 2017
fd588b5
Create python virtualenv with jupyter.
grst Nov 2, 2017
65b2cd1
Add new examples files for Rmarkdown.
grst Nov 3, 2017
7c6d855
Add preliminary version of RmarkdownReader and -Writer.
grst Nov 3, 2017
eb3cc8a
Add transutils for compatibility with more recent jupyter version.
grst Nov 3, 2017
2f32a50
update readme.
grst Nov 3, 2017
e6b51ea
Hook RmarkdownReader/Writer into FormatManager.
grst Nov 3, 2017
3d0c4e9
linting
grst Nov 3, 2017
34e8ef9
Move utility function from formats/notebook to lib.
grst Nov 3, 2017
d8316e0
Implementing HtmlNbOutput.
grst Nov 3, 2017
87e40a2
update Rnotebook html template to latest version.
grst Nov 8, 2017
a295568
Update Example5
grst Nov 8, 2017
4017c8e
move markdown code formatting to own function.
grst Nov 8, 2017
7b7eb98
New features in NbHtmlWriter.
grst Nov 8, 2017
9c7bb46
update example6
grst Nov 8, 2017
a42a16e
Bug fixes in NbHtmlReader
grst Nov 8, 2017
cf4499f
Fix bug with newline in image-data.
grst Nov 8, 2017
60112fd
derive cell language from jupyter kernel.
grst Nov 9, 2017
70e2ba4
Differ between rstudio Rmd and ipymd Rmd for better testing.
grst Nov 15, 2017
31b978d
Fix bugs related to ex5 unittest.
grst Nov 15, 2017
5b9101c
Add test cases and related fixes: ex6
grst Nov 16, 2017
01c47e2
Fix _assert_notebooks_equal.
grst Nov 16, 2017
20ef9fb
Ignore dev script in gitignore
grst Nov 17, 2017
790af0c
Fix remaining issues with ex6.
grst Nov 17, 2017
19f7f9a
Linting.
grst Nov 18, 2017
84a8a8e
update example6
grst Nov 18, 2017
1834eed
Add example7 (r notebook with R kernel).
grst Nov 18, 2017
efb945b
Fix linting error.
grst Nov 18, 2017
9a6a50e
Documentation of Makefile.
grst Nov 18, 2017
cb5bb76
update readme.
grst Nov 18, 2017
80fbee4
Fix README
grst Nov 18, 2017
8e68d99
Update README.md
grst Nov 19, 2017
3201183
Add pandoc to venv and fix pandoc version problems in tests.
grst Nov 19, 2017
d0459d4
Merge branch 'master' of github.com:grst/ipymd
grst Nov 19, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.coverage
.cache
__pycache__
experimental
wiki
Expand All @@ -12,3 +13,11 @@ images
build/
dist/
.eggs/
.idea
pytest.ini
venv
sandbox
pandoc-*

# internal script for development
convert_testcases.sh
Loading