summaryrefslogtreecommitdiff
path: root/src/text
Commit message (Expand)AuthorAgeFilesLines
* text/template: reword uncover to unwrapWill Faught2023-05-011-1/+1
* all: add a few links in package godocsDaniel Martí2023-03-251-1/+1
* all: upgrade Unicode from 13.0.0 to 15.0.0weebney2023-02-061-1/+1
* all: fix function names in commentscui fliter2022-11-041-1/+1
* text/template/parse: fix interaction of break/continue keywords and functionsEli Bendersky2022-11-042-5/+35
* text/template: correct assignment, not declaration, in rangeIan Lance Taylor2022-11-022-2/+12
* text/template/parse: fix confusion about markers near right delimsRuss Cox2022-09-232-1/+18
* text/template/parse: simplify I/O in lexingRob Pike2022-09-154-136/+135
* text/template: fixed typo in a nested template definitionkurochan2022-09-151-2/+2
* text/template: use strings.Buildercuiweixie2022-09-083-17/+16
* text/template: compare reflect.Value instances differentlyKeith Randall2022-08-222-5/+11
* text/template/parse: fix data race on lexer initializationEli Bendersky2022-06-063-6/+9
* text/template/parse: make atTerminator more efficientRob Pike2022-05-161-29/+12
* all: gofmt main repoRuss Cox2022-04-114-0/+34
* text/template: support delimiters that can be confused with actionsmprahl2022-04-062-6/+34
* text/template: permit eq and ne funcs to check against nilRob Pike2022-04-042-23/+51
* all: remove trailing blank doc comment linesRuss Cox2022-04-013-11/+0
* text/template: remove newline special casing in documentationSean Liao2022-03-311-1/+0
* 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