- 1b09d43 all: update references to symbols moved from io/ioutil to io by Russ Cox · 4 years, 3 months ago
- 2a9aa4d html/template, text/template: add ParseFS by Russ Cox · 4 years, 6 months ago
- 9384d34 text/template: allow newlines inside action delimiters by Russ Cox · 4 years, 4 months ago
- c8ea038 text/template: add CommentNode to template parse tree by Ariel Mashraki · 4 years, 9 months ago
- efbe47b html/template: add tests from text/template by Russ Cox · 4 years, 6 months ago
- 968e18e text/template: fix lint typo in VariableNode doc by Macks · 4 years, 7 months ago
- 9f4aeb3 all: use a hermetic "go" tool in standard-library tests by Bryan C. Mills · 4 years, 8 months ago
- d4d2980 html/template,text/template: switch to Unicode escapes for JSON compatibility by empijei · 4 years, 10 months ago
- 435b9dd text/template: avoid a global map to help the linker's deadcode elimination by Brad Fitzpatrick · 5 years ago
- 218f457 text/template: make reflect.Value indirections more robust by Daniel Martí · 5 years ago
- 8d7be1e text/template/parse: remove redundant return by Ariel Mashraki · 5 years ago
- 5481a97 text/template: indirect interfaces before slicing by Daniel Martí · 5 years ago
- ba4593a text/template: remove an incorrect comment and clarify docs for AddParseTree by Oliver Powell · 5 years ago
- 94e9a5e text/template: harden JSEscape to also escape ampersand and equal by Roberto Clapis · 5 years ago
- b8cb75f text/template: add error check for parenthesized first argument in pipeline by Rob Pike · 5 years ago
- debbb1e text/template/parse: speed up nodes printing by Ariel Mashraki · 5 years ago
- 93a79bb text/template/parse: remove duplication in peekNonSpace by Ariel Mashraki · 5 years ago
- 86cd6c2 text/template/parse: use strings.Builder in Chain and List nodes by Ariel Mashraki · 5 years ago
- 4f13a9c text/template/parse: use strings.Builder in String methods by Ariel Mashraki · 5 years ago
- 27cf81e text/template: further simplify building the vars list by Rob Pike · 5 years ago
- f91c850 text/template/parse: specify slice capacity in Pipenode.CopyPipe() by Pantelis Sampaziotis · 5 years ago
- 0f7b4e7 text/template: don't evaluate '.' as a float64 by Daniel Martí · 5 years ago
- 95cbcc5 text/template: support all comparable types in eq by Ariel Mashraki · 5 years ago
- 8a8cf5b text/template: refer to sorted map keys as "ordered" not "comparable" in docs by Mihai Borobocea · 5 years ago
- 4a4f752 text/template: avoid allocating a new common in copy by tnclong · 6 years ago
- 997086b text/template: replace bytes.Buffer with strings.Builder by Dong-hee Na · 6 years ago
- b97ec8e text/scanner: remove AllowDigitSeparator flag again by Robert Griesemer · 6 years ago
- bc81f52 text/scanner: rename AllowNumberbars to AllowDigitSeparators by Robert Griesemer · 6 years ago
- 263db9b html/template, text/template: document glob semantics by Andrew Gerrand · 6 years ago
- eb2fabf text/template: clarify the safety of Template.New by Daniel Martí · 6 years ago
- e2970a4 text/template: add a slice function to the predefined global functions by Ariel Mashraki · 6 years ago
- 06b0bab all: shorten some tests by Russ Cox · 6 years ago
- 45d74aa text/template: fix truth handling of typed interface nils in if and with by Bjørn Erik Pedersen · 6 years ago
- 170b8b4 all: add Unwrap and Is methods to various error types by Damien Neil · 6 years ago
- a27ede0 all: remove a few unused parameters by Daniel Martí · 6 years ago
- e770b5b text/template: allow using -}} with many spaces by Daniel Martí · 6 years ago
- c4078a1 text/tabwriter: use a single defer per Write call by Daniel Martí · 6 years ago
- 49662bc all: simplify multiple for loops by Daniel Martí · 6 years ago
- 15b4c71 text/template: error on method calls on nil interfaces by Daniel Martí · 6 years ago
- 856525c text/template: improve nil errors in evalField by Daniel Martí · 6 years ago
- 3cf56e7 text/template: accept new number syntax by Russ Cox · 6 years ago
- 34fb585 text/scanner: don't liberally consume (invalid) floats or underbars by Robert Griesemer · 6 years ago
- 710417b text/scanner: accept new Go2 number literals by Robert Griesemer · 6 years ago
- 85c1798 text/scanner: don't crash when calling TokenText in error handler by Robert Griesemer · 6 years ago
- 37afd3e text/template/parse: simplify Tree.pipeline by Daniel Martí · 6 years ago
- 1399b52 text/template/parse: error on bad range variables by Daniel Martí · 6 years ago
- 202e903 text/template: recover panics during function calls by Daniel Martí · 6 years ago
- 0cc4c29 text/template: removed truncation of context in error message by Alexandre Maari · 6 years ago
- 628403f text/template: drop unused sortKeys function by Seebs · 6 years ago
- a440cc0 fmt: print maps in key-sorted order by Rob Pike · 6 years ago
- 9a9dc36 text/template: explain that integer constants can overflow by Rob Pike · 6 years ago
- da0d1a4 all: use strings.ReplaceAll and bytes.ReplaceAll where applicable by Brad Fitzpatrick · 6 years ago
- 98fd668 text/template: simplify line tracking in the lexer by Daniel Martí · 6 years ago
- 6fa08c0 text/template: fix newline counting in raw strings by Daniel Martí · 6 years ago
- b15a1e3 text/template: Put bad function name in quotes in panic from (*Template).Funcs by Michal Bohuslávek · 6 years ago
- 6c7e199 text/scanner: don't allow Float exponents with no mantissa by Ben Hoyt · 6 years ago
- c5cb484 html/template: ignore untyped nil arguments to default escapers by Ian Lance Taylor · 7 years ago
- 578b961 text/template/parse: fix a comment around the assign operator by Andrew Braunstein · 7 years ago
- bedfa4e text/template/parse: undo breaking API changes by Daniel Theophanes · 7 years ago
- cf2c2ea text/tabwriter: fix BenchmarkPyramid and BenchmarkRagged again by Josh Bleecher Snyder · 7 years ago
- c8915a0 text/scanner: return RawString token rather than String for raw string literals by Shengyu Zhang · 7 years ago
- a33c595 text/tabwriter: don't mimic previous lines on flush by Josh Bleecher Snyder · 7 years ago
- 87412a1 text/tabwriter: fix BenchmarkPyramid and BenchmarkRagged by Josh Bleecher Snyder · 7 years ago
- e3c6847 all: skip unsupported tests for js/wasm by Richard Musiol · 7 years ago
- c6bbfbe text/template: improve comment example in doc by Zheng Dayu · 7 years ago
- 9ee7662 text/tabwriter: reduce allocations from tracking cells by Josh Bleecher Snyder · 7 years ago
- d013228 text/template: copy Decl field when copying PipeNode by Ian Lance Taylor · 7 years ago
- f2b5f75 text/tabwriter: remove internal use of bytes.Buffer (cleanup) by Robert Griesemer · 7 years ago
- 28c1ad9 text/template: add variable assignments by Daniel Martí · 7 years ago
- 32409a2 text/scanner: add examples by Adam Woodbeck · 7 years ago
- 669676b text/template: fix the documentation of the block action by Yury Smolsky · 7 years ago
- af7fc75 text/template: avoid assiging unnecessary variable by Kunpei Sakai · 7 years ago
- eb5925f text/template: remove associate's error return by Daniel Martí · 7 years ago
- 3cb54c8 text/template: differentiate nil from missing arg by Daniel Martí · 7 years ago
- 618f88d text/template: never call reflect.Zero(nil) by Daniel Martí · 7 years ago
- fd7331a text/template: revert CL 66410 "add break, continue actions in ranges" by Ian Lance Taylor · 7 years ago
- 3e97c42 text/template: remove unnecessary lexer field by Ariel Mashraki · 8 years ago
- 2f53fb5 text/template: remove unused lexer field by Ariel Mashraki · 7 years ago
- 7cb3e4f all: unindent some if bodies by exiting early by Daniel Martí · 7 years ago
- 3be5d55 text/template: add break, continue actions in ranges by Tim Cooper · 7 years ago
- 57e7d62 all: use sort.Slice in a few more places by Daniel Martí · 7 years ago
- de22318 text/template: check ignored error in a test by Daniel Martí · 7 years ago
- eb2dc3d all: remove strings.Contains check around Replace by Daniel Martí · 7 years ago
- 9b8964b text/template: fix pos info when trimming newlines by Daniel Martí · 7 years ago
- fbc8973 all: join some chained ifs to unindent code by Daniel Martí · 7 years ago
- 59413d3 all: unindent some big chunks of code by Daniel Martí · 7 years ago
- 590c5b0 text/template: support indexing into *int* maps by Emmanuel Odeke · 8 years ago
- af2ac47 all: single space after period by Brad Fitzpatrick · 8 years ago
- fca6ad4 text/scanner: clarify documentation on Pos and Position by Robert Griesemer · 8 years ago
- 8f06e21 text/scanner: use correct token position in example by Robert Griesemer · 8 years ago
- 3a2fee0 html/template: allow safe usage of predefined escapers in pipelines by Samuel Tan · 8 years ago
- 1acff5f template: warn about interleaved nature of writes by Dieter Plaetinck · 8 years ago
- 516e6f6 all: remove some unused parameters in test code by Daniel Martí · 8 years ago
- ff7994a all: remove redundant returns by Daniel Martí · 8 years ago
- be5a201 text/template: fix handling of empty blocks by Rob Pike · 8 years ago
- 5c5a106 text/template,html/template: state that Funcs must happen before parsing by Rob Pike · 8 years ago
- 06637fb text/template: fix method lookup on addressable nil pointer by Russ Cox · 8 years ago
- 50c7783 text/template: remove duplicate logic in conditional by Seth Vargo · 8 years ago
- 277bcbb text/template: handle option missingkey=error consistently by Özgür Kesim · 8 years ago
- 24a088d text/template: efficient reporting of line numbers by Rob Pike · 8 years ago