1
0
forked from x/icebergs
icebergs/core/wiki/iframe.go
2023-06-29 21:23:45 +08:00

14 lines
268 B
Go

package wiki
import ice "shylinux.com/x/icebergs"
const IFRAME = "iframe"
func init() {
Index.MergeCommands(ice.Commands{
IFRAME: {Name: "iframe link auto", Hand: func(m *ice.Message, arg ...string) {
_wiki_template(m, "", "", arg[0], arg[1:]...)
}},
})
}