Make HTML rendering more advanced
Also add Python-like HTML parser thing in lib/htmlparser
This commit is contained in:
@ -25,6 +25,10 @@ import (
|
||||
|
||||
type TString []Cell
|
||||
|
||||
func NewBlankTString() TString {
|
||||
return make([]Cell, 0)
|
||||
}
|
||||
|
||||
func NewTString(str string) TString {
|
||||
newStr := make([]Cell, len(str))
|
||||
for i, char := range str {
|
||||
|
Reference in New Issue
Block a user