Tree Website generation implemented
[biaweb2.git] / biawebutil.hpp
index b519615..ee6cd5a 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __BIAWEBUTIL__
 #define __BIAWEBUTIL__
 #include <string>
+
 // "discount" markdown library is a C library and hence requires to be wrapped in 
 // extern "C"
 extern "C" {
@@ -10,8 +11,8 @@ extern "C" {
 // utility functions for Biaweb that don't fit into any class and can be used by 
 // any class
 namespace biaweb {
-    // convert markdown
 
+    // convert markdown
     std::string convert_to_markdown (std::string str) {
         // discount is a C library and it doesn't work well with C++ streams
         // and there seems no way to get the output of any of these functions