mirror of
https://github.com/miniflux/v2.git
synced 2025-07-02 16:38:37 +00:00
Refactor assets bundler and split Javascript files
This commit is contained in:
parent
e1c56b2e53
commit
53deb0b8cd
49 changed files with 2837 additions and 2000 deletions
4
vendor/github.com/tdewolff/parse/css/parse.go
generated
vendored
4
vendor/github.com/tdewolff/parse/css/parse.go
generated
vendored
|
@ -70,6 +70,10 @@ type Token struct {
|
|||
Data []byte
|
||||
}
|
||||
|
||||
func (t Token) String() string {
|
||||
return t.TokenType.String() + "('" + string(t.Data) + "')"
|
||||
}
|
||||
|
||||
// Parser is the state for the parser.
|
||||
type Parser struct {
|
||||
l *Lexer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue