SetIndent string used for indentation. Do NOT use tabs, only spaces characters. Defaults to minified response, no indentation.
(indent string)
| 19 | // Do NOT use tabs, only spaces characters. |
| 20 | // Defaults to minified response, no indentation. |
| 21 | func (s *AceEngine) SetIndent(indent string) *AceEngine { |
| 22 | s.indent = indent |
| 23 | return s |
| 24 | } |
| 25 | |
| 26 | // Ace returns a new Ace view engine. |
| 27 | // It shares the same exactly logic with the |
no outgoing calls
no test coverage detected