Golang dedent: Revision history

From wikinotes

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

2 July 2022

  • curprev 17:0117:01, 2 July 2022Will talk contribs 520 bytes +9 →‎Usage
  • curprev 17:0117:01, 2 July 2022Will talk contribs 511 bytes +511 Created page with "A single-function library that dedents strings. = Documentation = <blockquote> {| class="wikitable" |- | github || https://github.com/lithammer/dedent |- |} </blockquote><!-- Documentation --> = Install = <blockquote> <syntaxhighlight lang="bash"> go get github.com/lithammer/dedent </syntaxhighlight> </blockquote><!-- Install --> = Usage = <blockquote> <syntaxhighlight lang="go"> import "dedent" dedent.Dedent(` a: b: 1 c: 2 `) //a: // b: 1 </syntaxhi..."