-
Notifications
You must be signed in to change notification settings - Fork 3
Releases: longbridge/autocorrect
Releases · longbridge/autocorrect
v1.2.0
v1.1.1
@huacnlee
huacnlee
3ffb0bb
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Assets 2
v1.0.1
- Add space for full date.
Before: 2006年1月2日, After: 2006 年 1 月 2 日
Assets 2
v1.0.0
Format,FormatHTML,Unformat,UnformatHTMLsupport custom option for addition processes.
Example:
type myFormatter struct {} func (my myFormatter) Format(text string) string { return strings.ReplaceAll(text, "ios", "iOS") } autocorrect.Format("新版本ios即将发布", myFormatter{}) // "新版本 iOS 即将发布"