package
0.1.0
Repository: https://github.com/superloach/defunct.git
Documentation: pkg.go.dev

# README

RuneUnder = '_'
RuneOpen = '['
RuneClose = ']'
RuneStart = '{'
RuneEnd = '}'
RuneEscape = '~'

StringSpace = " \t\n"

StringEnder =
	StringSpace
	RuneUnder
	RuneOpen
	RuneClose
	RuneStart
	RuneEnd

StringEscape =
	StringEnder
	RuneEscape

Module = []Expr

Expr = Literal []Arguments
	Literal = RuneUnder | Text | Block
		Text = [](Escape | !StringEnder)
			Escape = RuneEscape StringEscape

		Block = Section(RuneStart, RuneEnd)

	Arguments = Section(RuneOpen, RuneClose)

Section(Start, End) = Start []Expr End

# Functions

No description provided by the author
No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author