diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-02-25 22:43:51 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-01-12 12:37:11 +0100 |
commit | 7870e88f0653e6ac93c1f2e123aa9826778be376 (patch) | |
tree | 98d9c0840bf809ab5be36539680d0997762f3bb4 /src/blogc-make/sass.h | |
parent | a45e7255cb89d76c4836e1cac073c2f941529e70 (diff) | |
download | blogc-7870e88f0653e6ac93c1f2e123aa9826778be376.tar.gz blogc-7870e88f0653e6ac93c1f2e123aa9826778be376.tar.bz2 blogc-7870e88f0653e6ac93c1f2e123aa9826778be376.zip |
make: implemented optional sass support using libsassfeature/sass
pending:
- tests for sass support
- build tests on ci with and without libsass
- documentation
- support sass options in blogcfile
Diffstat (limited to 'src/blogc-make/sass.h')
-rw-r--r-- | src/blogc-make/sass.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/blogc-make/sass.h b/src/blogc-make/sass.h new file mode 100644 index 0000000..351b736 --- /dev/null +++ b/src/blogc-make/sass.h @@ -0,0 +1,18 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file LICENSE. + */ + +#ifndef _MAKE_SASS_H +#define _MAKE_SASS_H + +#include "ctx.h" +#include "../common/utils.h" + +bc_slist_t* bm_sass_outputlist(bm_ctx_t *ctx); +int bm_sass_exec(bm_ctx_t *ctx, bc_slist_t *outputs, bc_trie_t *args); + +#endif /* _MAKE_SASS_H */ |