Skip to content
Snippets Groups Projects
Commit 69c2d028 authored by Greg Wilson's avatar Greg Wilson
Browse files

Merge pull request #137 from petebachant/gh-pages

Add debugging notes about Git and line endings
parents dcae7846 ae7dcf72
Branches
Tags
No related merge requests found
......@@ -66,3 +66,23 @@ Please add notes about problems and solutions below.
Probably you didn't install
[pandocfilters](https://pypi.python.org/pypi/pandocfilters/1.2.3).
* `pandoc: Error running filter tools/filters/blockquote2div.py
tools/filters/blockquote2div.py not found in path`
Git has likely checked out the files with the incorrect line endings.
On Unix systems the recommended setting is
```bash
git config --global core.autocrlf input
```
and on Windows
```bash
git config --global core.autocrlf true
```
Note that after changing this setting you will need to either re-clone
or re-checkout the files in the repository.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment