mirror of
https://github.com/fengxxc/wechatmp2markdown.git
synced 2026-03-03 03:00:46 +08:00
14 lines
241 B
Go
14 lines
241 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/fengxxc/wechatmp2markdown/parse"
|
|
)
|
|
|
|
func Test1() {
|
|
res := parse.ParseFromHTMLFile("./test/test1.html")
|
|
fmt.Println("-------------------test1.html-------------------")
|
|
fmt.Printf("%+v\n", res)
|
|
}
|