forked from Python-Markdown/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The build_docs command now uses extra and toc extensions and a templa…
…te on the file system.
- Loading branch information
Waylan Limberg
committed
Aug 4, 2011
1 parent
4cabf3b
commit 85f355b
Showing
2 changed files
with
34 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | ||
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>%(title)s</title> | ||
<style type="text/css"> | ||
.nav { float:right; margin:1em;} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="nav"> | ||
<p><a href="/">Index</a></p> | ||
%(toc)s | ||
</div> | ||
<div id="content"> | ||
%(body)s | ||
</div> | ||
<p id="foot">© 2010 Python Markdown Project<p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters