Variable
You can use the "v" command to use variables.
define variables
Define variables in the JSON file
{
"variable1": "hello",
"variable2": "world"
}
use variables
To use variables in a markdown file, it is necessary to start with the "v -" directive
# variable
<!--{v-variable1}--> : <!--{v-variable2}-->
compiler results
# variable
hello : world
Last updated