mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
676e6875da
Fixes #11999
163 lines
3.1 KiB
Go
163 lines
3.1 KiB
Go
// Copyright 2018 The Hugo Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package pageparser
|
|
|
|
func lexIntroSection(l *pageLexer) stateFunc {
|
|
l.summaryDivider = summaryDivider
|
|
|
|
LOOP:
|
|
for {
|
|
r := l.next()
|
|
if r == eof {
|
|
break
|
|
}
|
|
|
|
switch {
|
|
case r == '+':
|
|
return l.lexFrontMatterSection(TypeFrontMatterTOML, r, "TOML", delimTOML)
|
|
case r == '-':
|
|
return l.lexFrontMatterSection(TypeFrontMatterYAML, r, "YAML", delimYAML)
|
|
case r == '{':
|
|
return lexFrontMatterJSON
|
|
case r == '#':
|
|
return lexFrontMatterOrgMode
|
|
case r == byteOrderMark:
|
|
l.emit(TypeIgnore)
|
|
case !isSpace(r) && !isEndOfLine(r):
|
|
break LOOP
|
|
}
|
|
}
|
|
|
|
// Now move on to the shortcodes.
|
|
return lexMainSection
|
|
}
|
|
|
|
func lexFrontMatterJSON(l *pageLexer) stateFunc {
|
|
// Include the left delimiter
|
|
l.backup()
|
|
|
|
var (
|
|
inQuote bool
|
|
level int
|
|
)
|
|
|
|
for {
|
|
|
|
r := l.next()
|
|
|
|
switch {
|
|
case r == eof:
|
|
return l.errorf("unexpected EOF parsing JSON front matter")
|
|
case r == '{':
|
|
if !inQuote {
|
|
level++
|
|
}
|
|
case r == '}':
|
|
if !inQuote {
|
|
level--
|
|
}
|
|
case r == '"':
|
|
inQuote = !inQuote
|
|
case r == '\\':
|
|
// This may be an escaped quote. Make sure it's not marked as a
|
|
// real one.
|
|
l.next()
|
|
}
|
|
|
|
if level == 0 {
|
|
break
|
|
}
|
|
}
|
|
|
|
l.consumeCRLF()
|
|
l.emit(TypeFrontMatterJSON)
|
|
|
|
return lexMainSection
|
|
}
|
|
|
|
func lexFrontMatterOrgMode(l *pageLexer) stateFunc {
|
|
/*
|
|
#+TITLE: Test File For chaseadamsio/goorgeous
|
|
#+AUTHOR: Chase Adams
|
|
#+DESCRIPTION: Just another golang parser for org content!
|
|
*/
|
|
|
|
l.summaryDivider = summaryDividerOrg
|
|
|
|
l.backup()
|
|
|
|
if !l.hasPrefix(delimOrg) {
|
|
return lexMainSection
|
|
}
|
|
|
|
// Read lines until we no longer see a #+ prefix
|
|
LOOP:
|
|
for {
|
|
|
|
r := l.next()
|
|
|
|
switch {
|
|
case r == '\n':
|
|
if !l.hasPrefix(delimOrg) {
|
|
break LOOP
|
|
}
|
|
case r == eof:
|
|
break LOOP
|
|
|
|
}
|
|
}
|
|
|
|
l.emit(TypeFrontMatterORG)
|
|
|
|
return lexMainSection
|
|
}
|
|
|
|
// Handle YAML or TOML front matter.
|
|
func (l *pageLexer) lexFrontMatterSection(tp ItemType, delimr rune, name string, delim []byte) stateFunc {
|
|
for i := 0; i < 2; i++ {
|
|
if r := l.next(); r != delimr {
|
|
return l.errorf("invalid %s delimiter", name)
|
|
}
|
|
}
|
|
|
|
// Let front matter start at line 1
|
|
wasEndOfLine := l.consumeCRLF()
|
|
// We don't care about the delimiters.
|
|
l.ignore()
|
|
|
|
var r rune
|
|
|
|
for {
|
|
if !wasEndOfLine {
|
|
r = l.next()
|
|
if r == eof {
|
|
return l.errorf("EOF looking for end %s front matter delimiter", name)
|
|
}
|
|
}
|
|
|
|
if wasEndOfLine || isEndOfLine(r) {
|
|
if l.hasPrefix(delim) {
|
|
l.emit(tp)
|
|
l.pos += 3
|
|
l.consumeCRLF()
|
|
l.ignore()
|
|
break
|
|
}
|
|
}
|
|
|
|
wasEndOfLine = false
|
|
}
|
|
|
|
return lexMainSection
|
|
}
|