notedown
notedown copied to clipboard
Markdown <=> IPython Notebook
When I tried to convert a jupyter notebook which contained Chinese characters, UnicodeEncoderError occurs like this: I have tried to install `notedown` using the two methods provided in `README`: pre-compiled...
With pandoc installed the `setup.py` failed because pandoc seems to introduce non ascii characters. Repeating the commands from `setup.py` ``` >>> import subprocess >>> pandoc = subprocess.Popen(['pandoc', 'README.md', '--to', 'rst'],...
I've installed `notedown` via `pip install notedown` for both Windows 10 and Ubuntu (WSL). Both have Anaconda 3 distribution installed. I've made sure to run `conda update notebook` and `conda...
- Installed via [conda](https://anaconda.org/bjornfjohansson/notedown). - In shell: `notedown README.ipynb --to markdown --strip > README.md` - Output: ```bash Traceback (most recent call last): File "/User/miniconda3/bin/notedown", line 4, in import notedown.main File...
Please updata this package. error: ShimWarning: The `IPython.html` package has been deprecated. You should import from `notebook` instead. `IPython.html.widgets` has moved to `ipywidgets`. "`IPython.html.widgets` has moved to `ipywidgets`.", ShimWarning)
I'm not sure if the warning in the subject is itself a problem, but I can't seem to run your example. I have a new installation of Anaconda with Python3...
## I expect Code and Text block to be subsequent ## Instead The implementation forces code and text blocks to be alternate
With the following example, the second paragraph "Contrairement ..." gets interpreted by notedown as a code block instead of a second paragraph of the first item: ``` 1. Donner un...
# 1. symbol.md The contents in symbol.md (see attachment `symbol.md`) is like below. When I run "notedown symbol.md --to markdown --strip" (see chapter 1 and attachment symbol.md), then it becomes...
### What does this PR do? Allows subsequent code and text blocks. Reimplements text and code block merging tracking position.