d2/lib/textmeasure/markdown_js.go

14 lines
307 B
Go
Raw Normal View History

2023-10-02 21:57:37 +00:00
//go:build wasm
package textmeasure
import "oss.terrastruct.com/d2/d2renderers/d2fonts"
func MeasureMarkdown(mdText string, ruler *Ruler, fontFamily *d2fonts.FontFamily, fontSize int) (width, height int, err error) {
return 0, 0, nil
}
func RenderMarkdown(m string) (string, error) {
return "", nil
}