Tagscript

tagscript


Class: LooseVarsParser

Defined in: Parsers/LooseVars.ts:17

The loose variable tag represents the transformer for any seeded or defined variables. This variable implementation is considered loose since it checks whether the variable is valid during parsing, rather than willAccept.

Example

# Note:- this example assumes you are using define parser
{=(var):This is my variable.}
{var}
# This is my variable.

Implements

Constructors

new LooseVarsParser()

new LooseVarsParser(): LooseVarsParser

Returns

LooseVarsParser

Methods

parse()

parse(ctx): null | string

Defined in: Parsers/LooseVars.ts:22

Parses the given tag.

Parameters

ctx

Context

The context of the tag.

Returns

null | string

Implementation of

IParser.parse


willAccept()

willAccept(): boolean

Defined in: Parsers/LooseVars.ts:18

Whether the parser can handle the given tag.

Returns

boolean

Implementation of

IParser.willAccept

On this page