package sanitized_anchor_name
import "github.com/shurcooL/sanitized_anchor_name"
Package sanitized_anchor_name provides a func to create sanitized anchor names.
Its logic can be reused by multiple packages to create interoperable anchor names and links to those anchors.
At this time, it does not try to ensure that generated anchor names are unique, that responsibility falls on the caller.
Index ¶
Examples ¶
Functions ¶
func Create ¶
Create returns a sanitized anchor name for the given text.
Code:play
Output: Code:play
Output:Example¶
package main
import (
"fmt"
"github.com/shurcooL/sanitized_anchor_name"
)
func main() {
anchorName := sanitized_anchor_name.Create("This is a header")
fmt.Println(anchorName)
}
this-is-a-header
Example (Two)¶
package main
import (
"fmt"
"github.com/shurcooL/sanitized_anchor_name"
)
func main() {
fmt.Println(sanitized_anchor_name.Create("This is a header"))
fmt.Println(sanitized_anchor_name.Create("This is also a header"))
fmt.Println(sanitized_anchor_name.Create("main.go"))
fmt.Println(sanitized_anchor_name.Create("Article 123"))
fmt.Println(sanitized_anchor_name.Create("<- Let's try this, shall we?"))
fmt.Printf("%q\n", sanitized_anchor_name.Create(" "))
fmt.Println(sanitized_anchor_name.Create("Hello, 世界"))
}
this-is-a-header
this-is-also-a-header
main-go
article-123
let-s-try-this-shall-we
""
hello-世界
Source Files ¶
- Version
- v1.0.0 (latest)
- Published
- Dec 26, 2018
- Platform
- windows/amd64
- Imports
- 1 packages
- Last checked
- 6 days ago –
Tools for package owners.