adonis-ssg

dead simple, C89 static site generator with markdown support and no external dependencies
git clone git://kqueue.dev/adonis-ssg.git
Log | Files | Refs | README | LICENSE

config.h (498B)


      1 /* do you want an rss file to be generated or not? */
      2 int genrss = 1;
      3 /* what to append every html file with */
      4 char *appendhtml = "</article>\n</body\n</html>";
      5 /* what template to use for all html pages */
      6 char *htmltemplate = "template.html";
      7 /* url of website, important for rss */
      8 /* probably change this value */
      9 char *url = "https://kqueue.dev/";
     10 /* used for rss */
     11 /* you should probably change these values */
     12 char *rsstitle = "website";
     13 char *rssdesc = "website generated by adonis-ssg";