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