diff --git a/content-migration/hooks/fetch-wiki-caches b/content-migration/hooks/fetch-wiki-caches
index 97d1129e3bef9ec0eefe1db69d10638cfd2fa3a7..3e36fac7aa7ac4aafbfafd72c20929d0fa120e92 100755
--- a/content-migration/hooks/fetch-wiki-caches
+++ b/content-migration/hooks/fetch-wiki-caches
@@ -1,26 +1,26 @@
 #!/usr/bin/env php
 <?php
 
-include __DIR__.'/hooks-by-category.php';
+include __DIR__ . '/hooks-by-category.php';
 
 $wiki_url = 'https://wiki.civicrm.org/confluence/display/CRMDOC';
-$cache_dir = __DIR__.'/wiki_cache';
+$cache_dir = __DIR__ . '/wiki_cache';
 
 chdir($cache_dir);
 
 foreach ($hooks_by_category as $category => $hooks) {
   foreach ($hooks as $hook) {
     if ( file_exists($hook) ) {
-      echo "SKIPPING: $hook (already cached)\n";
+      echo "SKIPPING: $hook (already cached)" . PHP_EOL;
     }
     else {
-      echo "DOWNLOADING: $hook\n";
+      echo "DOWNLOADING: $hook" . PHP_EOL;
       system("curl '$wiki_url/$hook' > '$hook'");
     }
-    echo "\n";
+    echo PHP_EOL;
   }
 }
 
-echo "DONE \n";
+echo "DONE" . PHP_EOL;
 
 
diff --git a/content-migration/hooks/migrate-hooks b/content-migration/hooks/migrate-hooks
index 4c1c16e49e3fd81722b4a12ce588c6e4fabdaa3d..6fdfb8044c9405d12a6e253541e0e922f74bdc94 100755
--- a/content-migration/hooks/migrate-hooks
+++ b/content-migration/hooks/migrate-hooks
@@ -1,11 +1,39 @@
 #!/usr/bin/env php
 <?php
 
-include __DIR__.'/hooks-by-category.php';
+include __DIR__ . '/hooks-by-category.php';
+
+$cache_dir = __DIR__ . '/wiki_cache';
+$root_dir = dirname(dirname(__DIR__));
+$hooks_dir = "$root_dir/docs/hooks";
+
+# create hooks directory if needed
+if ( !is_dir($hooks_dir) ) {
+  mkdir($hooks_dir);
+}
+
+chdir($hooks_dir);
 
 foreach ($hooks_by_category as $category => $hooks) {
-  echo $category . "\n";
+  foreach ($hooks as $hook) {
+    $html = "$cache_dir/$hook";
+    if ( file_exists($html) ) {
+      echo "converting $hook ... ";
+      $conversion_status = 1;
+      system("webpage2md $html > $hook.md", $conversion_status);
+      if( $conversion_status == 0 ) {
+        echo "done" . PHP_EOL;
+      }
+      else {
+        echo "ERROR CONVERTING $hook" . PHP_EOL;
+      }
+    }
+    else {
+      echo "WARNING: $hook not yet fetched" . PHP_EOL;
+    }
+  }
 }
 
 
 
+