mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 12:10:42 +02:00
22 lines
1.1 KiB
C++
22 lines
1.1 KiB
C++
#include <string>
|
|
|
|
// @brief Format file.
|
|
// @param TEMPLATE_FILE File that you want to format in string.
|
|
// @param TEMPLATE Template that you want to replace. For example `{{title}}`
|
|
// @param INPUT Text that you want to replace TEMPLATE with.
|
|
// @return Formatted file in std::string
|
|
std::string format_file(const std::string &TEMPLATE_FILE,
|
|
const std::string &TEMPLATE, const std::string &INPUT);
|
|
|
|
// @brief Format file conditionally. Replace everything between `{{if
|
|
// _something_}}` to `{{endif}}` If INPUT is empty then everything between
|
|
// this will be removed.
|
|
// @param TEMPLATE_FILE File that you want to format in string.
|
|
// @param TEMPLATE Full name of the if statement. For example `{{if title}}`
|
|
// @return Formatted file in std::string
|
|
std::string format_file_conditionally(const std::string &TEMPLATE_FILE,
|
|
const std::string &START_TAG,
|
|
const std::string &END_TAG,
|
|
const std::string &TEMPLATE,
|
|
const std::string &INPUT);
|