1.0.0 • Published 6 months ago

itpre v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

itp

Inline text preprocessor.

Usage

import * as itmap from 'itpre';
import fs from 'fs';

const { parse, FileType } = itmap;

const file = await parse('./any.it', {
    variable: "hello"
});

fs.writeFileSync('./any.file', file, 'utf8');

Syntax

@type - one of markdown, html, txt

%pref parser_preference - parser_preference one of ignore_newlines
%pref parser_preference end

{fn function_name[args] {
    // javascript code
    return "Hello, World!";
}}

{fn function_name2[args] {
    // javascript code
    return [{
        one: 1,
        two: 2
    }];
}}

{var variable_name = `[[variable]]`}
{var variable_name2 = "variable"}

{function_name[args] | pipeTo} - Pipes function_name's output to a variable
{function_name2[args] | pipeTo2} - Pipes are optional

{insert(pipeTo) {
    # [[pipeTo]]
}}

{map(pipeTo2) {
    [[one]], [[two]]
}}

{if(variable_name == "variable") {
    # Hello, World!
}}
1.0.0

6 months ago