EnderFramework icon indicating copy to clipboard operation
EnderFramework copied to clipboard

Support languages

Open 0xENDER opened this issue 5 years ago • 1 comments

0xENDER avatar Oct 18 '20 12:10 0xENDER

Replace %%STUFF%% strings with their JSON value.

Example:

<html>
    <head></head>
    <body>
        <h1>%%HomePage.Welcome%%</h1>
    </body>
</html>

and

{
    "HomePage": {
        "Welcome": "Hello!",
        [...]
    },
    [...]
}

will be:

<html>
    <head></head>
    <body>
        <h1>Hello!</h1>
    </body>
</html>

0xENDER avatar Mar 08 '21 12:03 0xENDER