github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/p/demo/blog/util.gno (about)

     1  package blog
     2  
     3  import "strings"
     4  
     5  func breadcrumb(parts []string) string {
     6  	return "# " + strings.Join(parts, " / ") + "\n\n"
     7  }