diff options
author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-06-08 16:05:01 +0000 |
---|---|---|
committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-06-08 16:05:01 +0000 |
commit | 0784ae4285103bb3098e482fc4f915b977fdf6db (patch) | |
tree | c44f93238162a571b54c12a352c53b1850ec1281 /sandbox/code-block-directive/docs/myfunction.py.html | |
parent | 698b0e9f6dd70ef89d4e47783efbaff903e3155a (diff) | |
download | docutils-0784ae4285103bb3098e482fc4f915b977fdf6db.tar.gz |
New sandbox project for development of a code-block directive
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@5229 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox/code-block-directive/docs/myfunction.py.html')
-rw-r--r-- | sandbox/code-block-directive/docs/myfunction.py.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sandbox/code-block-directive/docs/myfunction.py.html b/sandbox/code-block-directive/docs/myfunction.py.html new file mode 100644 index 000000000..eb3365b00 --- /dev/null +++ b/sandbox/code-block-directive/docs/myfunction.py.html @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="iso-8859-1" ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> +<meta name="generator" content="Docutils 0.4.1: http://docutils.sourceforge.net/" /> +<title></title> +<link rel="stylesheet" href="../tools/pygments-default.css" type="text/css" /> +</head> +<body> +<div class="document"> +<p>This is a test of the new code-block directive:</p> +<!-- Translate this document to HTML with a pygments enhanced frontend, e.g. + +rst2html-highlight - -stylesheet=pygments-default.css - -link-stylesheet --> +<pre class="code-block python literal-block"> +<span class="k">def</span> <span class="nf">my_function</span><span class="p">():</span> + <span class="s">"just a test"</span> + <span class="k">print</span> <span class="mi">8</span><span class="o">/</span><span class="mi">2</span> + +</pre> +</div> +<div class="footer"> +<hr class="footer" /> +Generated on: 2007-06-05. + +</div> +</body> +</html> |