Add support for docs that are specific to non-boost asio.
diff --git a/asio/boostify.pl b/asio/boostify.pl
index f412979..7433de5 100755
--- a/asio/boostify.pl
+++ b/asio/boostify.pl
@@ -288,6 +288,13 @@
       print_line($output, $1 . "[authors [Kohlhoff, Christopher]]", $from, $lineno);
       print_line($output, $line, $from, $lineno);
     }
+    elsif ($line =~ /boostify: non-boost docs start here/)
+    { 
+      while ($line = <$input>)
+      {
+        last if $line =~ /boostify: non-boost docs end here/;
+      }
+    }
     elsif ($line =~ /^$/ && $needs_doc_link)
     {
       $needs_doc_link = 0;