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

Converts to github pages site #57

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
docs: magicmethods.html magicmethods.pdf clean
docs: index.html magicmethods.pdf clean

html: magicmethods.html
html: index.html

pdf: magicmethods.pdf

magicmethods.html: table.markdown magicmethods.markdown appendix.markdown
index.html: table.markdown magicmethods.markdown appendix.markdown
python magicmarkdown.py

magicmethods.pdf: magicmethods.tex
Expand Down
7 changes: 4 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
##A guide to Python's magic methods.##
## A guide to Python's magic methods. ##

Written by Rafe Kettler in the year 2011.

Licensed under Creative Commons CC--NC-BY-SA (see http://creativecommons.org/licenses/by-nc-sa/3.0/). Basically, noncommercial, requires attribution, must be reproduced with a similar license. 'Nuff said.

Can be seen at http://www.rafekettler.com/magicmethods.html in relatively up to date form.
Can be seen at https://RafeKettler.github.io/magicmethods in relatively up to date form.

## For forkers: ##
Edit `magicmethods.markdown`/`magicmethods.tex`, then run `make docs`. The build script requires the Python Markdown module, so you'll have to run `pip install markdown` if you don't already have it. Happy hacking!
Edit `magicmethods.markdown`/`magicmethods.tex`, then run `make docs`. The build script requires the Python Markdown module, so you'll have to run `pip install markdown` if you don't already have it. Happy hacking!
Loading