mirror of
https://shylinux.com/x/icebergs
synced 2025-04-25 17:18:05 +08:00
14 lines
263 B
Go
14 lines
263 B
Go
package wiki
|
|
|
|
import ice "shylinux.com/x/icebergs"
|
|
|
|
const IFRAME = "iframe"
|
|
|
|
func init() {
|
|
Index.MergeCommands(ice.Commands{
|
|
IFRAME: {Name: "iframe link", Hand: func(m *ice.Message, arg ...string) {
|
|
_wiki_template(m, "", "", arg[0], arg[1:]...)
|
|
}},
|
|
})
|
|
}
|