aboutsummaryrefslogtreecommitdiffstats
path: root/src/directives.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2015-11-04 01:29:11 -0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2015-11-04 01:29:11 -0200
commit43bb8973e683743e780895f99f46364c7d85457f (patch)
tree0cff89a6ad8b081741b1ef1b55cd1d018a3bc444 /src/directives.c
parent13ce0cdba95a857410208282ea5d0bb13ee1baec (diff)
downloadblogc-43bb8973e683743e780895f99f46364c7d85457f.tar.gz
blogc-43bb8973e683743e780895f99f46364c7d85457f.tar.bz2
blogc-43bb8973e683743e780895f99f46364c7d85457f.zip
Revert "content-parser: added basic rst-like directives support"
This reverts commit 1faa52052624e7c03256df0c63c43f5d40ddb57a.
Diffstat (limited to 'src/directives.c')
-rw-r--r--src/directives.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/directives.c b/src/directives.c
deleted file mode 100644
index 7a6b47f..0000000
--- a/src/directives.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * blogc: A blog compiler.
- * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br>
- *
- * This program can be distributed under the terms of the BSD License.
- * See the file LICENSE.
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif /* HAVE_CONFIG_H */
-
-#include "utils/utils.h"
-
-
-char*
-blogc_directive_loader(const char *name, const char *argument, b_trie_t *params)
-{
- // TODO: implement me!
- return b_strdup("TODO\n");
-}