ReadMDString reads MD (markdown) from the given string and adds corresponding Cogent Core widgets to the given [core.Widget], using the given context.
(ctx *Context, parent core.Widget, s string)
| 40 | // ReadMDString reads MD (markdown) from the given string and adds |
| 41 | // corresponding Cogent Core widgets to the given [core.Widget], using the given context. |
| 42 | func ReadMDString(ctx *Context, parent core.Widget, s string) error { |
| 43 | return ReadMD(ctx, parent, []byte(s)) |
| 44 | } |