summaryrefslogtreecommitdiff
path: root/src/text
Commit message (Expand)AuthorAgeFilesLines
* text/scanner: guard against installed IsIdentRune that accepts EOFRobert Griesemer2022-03-172-1/+20
* text/template/parse: allow space after continue or breakRob Pike2022-03-152-4/+8
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-137-37/+37
* text/template: use reflect.Value.FieldByIndexErrRob Pike2021-10-292-1/+27
* all: use reflect.{Pointer,PointerTo}Cuong Manh Le2021-10-261-9/+9
* html/template: remove unused `mode` field on `Tree` structGusted2021-10-181-1/+0
* all: use bytes.Cut, strings.CutRuss Cox2021-10-061-6/+4
* text/template: only unwrap final and/or valueIan Lance Taylor2021-10-052-3/+13
* text/template: undo reflect.Value wrapping for short-circuit and/orIan Lance Taylor2021-10-012-6/+11
* text/template: check final value for short-circuit and/orIan Lance Taylor2021-09-292-1/+8
* html/template, text/template: implement break and continue for range loopsRuss Cox2021-09-238-3/+132
* text/template: implement short-circuit and, orRuss Cox2021-09-214-33/+36
* text/template: initialize template before locking itIan Lance Taylor2021-09-202-1/+11
* text/scanner: use Go convention in Position doc commentmehradsadeghi2021-07-181-1/+1
* text/template: fix type bug in eqRuss Cox2021-05-062-10/+15
* text/template/parse: rename DeferFuncCheck to SkipFuncCheckRuss Cox2021-05-062-6/+6
* text/template: add lock for Template.tmpl to fix data raceIan Lance Taylor2021-05-043-5/+51
* text/template/parse: add a mode to skip func-check on parsingAriel Mashraki2021-04-192-2/+20
* text/template: replace os.MkdirTemp with T.TempDirManlio Perillo2021-04-121-5/+1
* text/template: wrap errors returned by template functions instead of stringif...Adrien Delorme2021-03-053-2/+27
* reflect: add Method.IsExported and StructField.IsExported methodsJoe Tsai2021-02-251-1/+1
* text/template: error on range over send channelMeng Zhuo2020-12-152-0/+17
* all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox2020-12-093-8/+6
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-202-10/+9
* html/template, text/template: add ParseFSRuss Cox2020-10-202-6/+83
* text/template: allow newlines inside action delimitersRuss Cox2020-10-126-87/+117
* text/template: add CommentNode to template parse treeAriel Mashraki2020-08-286-6/+90
* html/template: add tests from text/templateRuss Cox2020-07-141-0/+1
* text/template: fix lint typo in VariableNode docMacks2020-06-231-1/+1
* all: use a hermetic "go" tool in standard-library testsBryan C. Mills2020-05-211-1/+1
* html/template,text/template: switch to Unicode escapes for JSON compatibilityempijei2020-04-162-7/+7
* text/template: avoid a global map to help the linker's deadcode eliminationBrad Fitzpatrick2020-04-154-28/+111
* text/template: make reflect.Value indirections more robustDaniel Martí2020-02-241-72/+66
* text/template/parse: remove redundant returnAriel Mashraki2020-01-231-1/+0
* text/template: indirect interfaces before slicingDaniel Martí2019-12-192-2/+5
* text/template: remove an incorrect comment and clarify docs for AddParseTreeOliver Powell2019-12-171-4/+4
* text/template: harden JSEscape to also escape ampersand and equalRoberto Clapis2019-11-212-1/+9
* text/template: add error check for parenthesized first argument in pipelineRob Pike2019-11-122-1/+46
* text/template/parse: speed up nodes printingAriel Mashraki2019-10-032-21/+130
* text/template/parse: remove duplication in peekNonSpaceAriel Mashraki2019-10-011-7/+2
* text/template/parse: use strings.Builder in Chain and List nodesAriel Mashraki2019-10-012-11/+31
* text/template/parse: use strings.Builder in String methodsAriel Mashraki2019-10-012-19/+38
* text/template: further simplify building the vars listRob Pike2019-10-011-3/+3
* text/template/parse: specify slice capacity in Pipenode.CopyPipe()Pantelis Sampaziotis2019-09-301-1/+1
* text/template: don't evaluate '.' as a float64Daniel Martí2019-09-252-1/+16
* text/template: support all comparable types in eqAriel Mashraki2019-09-253-23/+49
* text/template: refer to sorted map keys as "ordered" not "comparable" in docsMihai Borobocea2019-09-061-2/+2
* text/template: avoid allocating a new common in copytnclong2019-08-271-6/+7
* text/template: replace bytes.Buffer with strings.BuilderDong-hee Na2019-08-271-8/+5
* text/scanner: remove AllowDigitSeparator flag againRobert Griesemer2019-06-272-17/+16