add wordpress mode
add wordpress mode

file:a/index.md -> file:b/index.md
--- a/index.md
+++ b/index.md
@@ -18,7 +18,7 @@
 The key thing here is that your source material demonstrates to the judges that some of the end result was your own work and that it is possible for another person to replicate that work.
 
 
-# General References {#general-data-hacking-and-programming-references}
+# General References
 
 
 ## The basics of being a data scientist
@@ -58,7 +58,7 @@
 
 
 
-# Developer Tools For Your Computer {#developer-tools-for-your-computer}
+# Developer Tools For Your Computer
 No matter what kind of application you have for the data, there are many tools you can use to better collaborate and manage your project.
 
 ### Source Control 
@@ -76,7 +76,7 @@
 
 [Trello](https://trello.com/) and [Workflowy](https://workflowy.com/) are free, lightweight project management tools suitable for a rapid project!
 
-## Hosted Developer Tools {#hosted-developer-tools}
+## Hosted Developer Tools
 
 Can get many tools (source control, issue tracking) combined into one service cloud hosted so there's no setup required.
 
@@ -98,10 +98,10 @@
 
 # Applications of data hacking
 
-## API Development {#api-development}
-
-
-So an API isn't just an XML file ![;)](http://www.govhack.org/wp-includes/images/smilies/icon_wink.gif) 
+## API Development
+
+
+So an API isn't just an XML file!
 
 A good web based data API:
 
@@ -126,7 +126,7 @@
 For example [Stripe's API](http://amberonrails.com/building-stripes-api/) or previous GovHack entrant [WeatheredOak](http://www.govhack.org/2012/06/02/weatheredoak/)
 
 
-## Infographics and Data Visualisation {#data-visualisation}
+## Infographics and Data Visualisation
 
 Infographics try to contextualise charts and graphs to tell a story. Data vis builds on this to find new ways to design insight.
 
@@ -207,7 +207,7 @@
 NZ Gov budget http://www.treasury.govt.nz/budget/app
 
 
-# Geographical Data Tools {#geographical-data-tools}
+# Geographical Data Tools
 
 Check out the [GeoRabble Boundary Mapper's Cookbook](http://georabble.org/2012/05/31/the-boundary-mappers-cookbook/) to see how you can tie all these things together!
 
@@ -270,7 +270,7 @@
 
 ### 
 
-# Tabular Data Tools {#tabular-data-tools}
+# Tabular Data Tools
 
 ## Wrangling
 
@@ -359,7 +359,7 @@
 
 
 
-# Graph (relationships and networks) Data Tools {#graph-relationships-and-networks-data-tools}
+# Graph (relationships and networks) Data Tools
 Graph data can be very valuable for finding communities, hubs and connections between entities (the 6 degrees of separation). This is through the techniques of Social Network Analysis.
 
 ## Analysis

file:a/index.php -> file:b/index.php
--- a/index.php
+++ b/index.php
@@ -1,3 +1,10 @@
+<?php
+$wordpress = false;
+if (isset($_REQUEST["wordpress"])) $wordpress = true;
+
+if (!$wordpress) {
+
+?>
 <!DOCTYPE html>
 <!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
 <!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
@@ -26,8 +33,22 @@
         <div id="wrapper">
         <section>
 <?php
+}
 include_once "php-markdown/markdown.php";
-echo str_replace("</div><div><h1>GovHack","<div><h1>GovHack",str_replace("<h1>","</div><div><h1>",Markdown(file_get_contents("index.md"))));
+$content = Markdown(file_get_contents("index.md"));
+$content = str_replace("<h1","</div><div><h1",$content);
+$content = str_replace("</div><div><h1>GovHack","<div><h1>GovHack",$content);
+$content .= "</div>";
+if ($wordpress) {
+    $content = str_replace("<div><h1>","<div>[toggle title=\"",$content);
+    $content = str_replace("</div>","[/toggle]</div>",$content);
+    $content = str_replace("</h1>","\"]",$content);
+
+    $content = str_replace("<img","<img width=\"300\" class=\"alignright size-medium\"",$content);
+    $content = str_replace("img/","http://www.govhack.org/wp-content/uploads/",$content);
+}
+echo  $content;
+if (!$wordpress) {
 ?>
 </div>
         </section>
@@ -58,4 +79,6 @@
         </script>
     </body>
 </html>
-
+<?php
+}
+?>

directory:a/js/toc -> directory:b/js/toc
--- a/js/toc
+++ b/js/toc