···11+// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
22+33+package tangled
44+55+// schema: sh.tangled.markup.markdown
66+77+import (
88+ "github.com/bluesky-social/indigo/lex/util"
99+)
1010+1111+const (
1212+ MarkupMarkdownNSID = "sh.tangled.markup.markdown"
1313+)
1414+1515+func init() {
1616+ util.RegisterType("sh.tangled.markup.markdown#main", &MarkupMarkdown{})
1717+} // MarkupMarkdown is a "main" in the sh.tangled.markup.markdown schema.
1818+// Tangled Flavored Markdown format text
1919+//
2020+// RECORDTYPE: MarkupMarkdown
2121+type MarkupMarkdown struct {
2222+ LexiconTypeID string `json:"$type,const=sh.tangled.markup.markdown" cborgen:"$type,const=sh.tangled.markup.markdown"`
2323+ // blobs: list of blobs referenced in markdown
2424+ Blobs []*util.LexBlob `json:"blobs,omitempty" cborgen:"blobs,omitempty"`
2525+ // original: Original Markdown before post-processing. Used to restore original input on edit.
2626+ Original *string `json:"original,omitempty" cborgen:"original,omitempty"`
2727+ // text: Final post-processed markdown content that will be rendered
2828+ Text string `json:"text" cborgen:"text"`
2929+}