Library
core
src
node
el
classes
El

Lawtext core references


Lawtext core references / core/src/node/el / EL

Class: EL

Defined in: core/src/node/el/index.ts:10 (opens in a new tab)

EL: a simplified XML DOM functionality that implements JsonEL interface.

Extended by

Implements

Constructors

new EL()

new EL(tag, attr, children, range, id?): EL

Defined in: core/src/node/el/index.ts:17 (opens in a new tab)

Parameters

tag

string

attr
children

(string | EL)[] = []

range

null | [number, number]

id?

number

Returns

EL

Properties

attr

attr: object

Defined in: core/src/node/el/index.ts:12 (opens in a new tab)

The attributes of the element

Index Signature

[key: string]: undefined | string

Implementation of

JsonEL.attr


children

children: (string | EL)[]

Defined in: core/src/node/el/index.ts:13 (opens in a new tab)

The children of the element

Implementation of

JsonEL.children


id

id: number

Defined in: core/src/node/el/index.ts:14 (opens in a new tab)


range

range: null | [number, number]

Defined in: core/src/node/el/index.ts:15 (opens in a new tab)


tag

tag: string

Defined in: core/src/node/el/index.ts:11 (opens in a new tab)

The tag name of the element

Implementation of

JsonEL.tag

Accessors

isControl

Get Signature

get isControl(): boolean

Defined in: core/src/node/el/index.ts:36 (opens in a new tab)

Returns

boolean

Methods

copy()

copy(deep, copyID): EL

Defined in: core/src/node/el/index.ts:40 (opens in a new tab)

Parameters

deep

boolean = true

copyID

boolean = false

Returns

EL


innerXML()

innerXML(withControlEl): string

Defined in: core/src/node/el/index.ts:109 (opens in a new tab)

Parameters

withControlEl

boolean = false

Returns

string


json()

json(withControlEl, withProperties): JsonEL

Defined in: core/src/node/el/index.ts:56 (opens in a new tab)

Parameters

withControlEl

boolean = false

withProperties

boolean = false

Returns

JsonEL


outerXML()

outerXML(withControlEl): string

Defined in: core/src/node/el/index.ts:105 (opens in a new tab)

Parameters

withControlEl

boolean = false

Returns

string


text()

text(): string

Defined in: core/src/node/el/index.ts:95 (opens in a new tab)

Returns

string


wrapXML()

wrapXML(inner): string

Defined in: core/src/node/el/index.ts:101 (opens in a new tab)

Parameters

inner

string

Returns

string