mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { Token } from '../parser/token'
|
|
import { TagToken } from '../parser/tag-token'
|
|
import { HTMLToken } from '../parser/html-token'
|
|
import { NormalizedFullOptions } from '../liquid-options'
|
|
|
|
export function whiteSpaceCtrl (tokens: Token[], options: NormalizedFullOptions) {
|
|
options = { greedy: true, ...options }
|
|
let inRaw = false
|
|
|
|
for (let i = 0; i < tokens.length; i++) {
|
|
const token = tokens[i]
|
|
if (!inRaw && token.trimLeft) {
|
|
trimLeft(tokens[i - 1], options.greedy)
|
|
}
|
|
|
|
if (TagToken.is(token)) {
|
|
if (token.name === 'raw') inRaw = true
|
|
else if (token.name === 'endraw') inRaw = false
|
|
}
|
|
|
|
if (!inRaw && token.trimRight) {
|
|
trimRight(tokens[i + 1], options.greedy)
|
|
}
|
|
}
|
|
}
|
|
|
|
function trimLeft (token: Token, greedy: boolean) {
|
|
if (!token || !HTMLToken.is(token)) return
|
|
|
|
const rLeft = greedy ? /\s+$/g : /[\t\r ]*$/g
|
|
token.content = token.content.replace(rLeft, '')
|
|
}
|
|
|
|
function trimRight (token: Token, greedy: boolean) {
|
|
if (!token || !HTMLToken.is(token)) return
|
|
|
|
const rRight = greedy ? /^\s+/g : /^[\t\r ]*\n?/g
|
|
token.content = token.content.replace(rRight, '')
|
|
}
|