From 531404f5fb47ac42f86f9d4cc8fd5158e5a6ce4d Mon Sep 17 00:00:00 2001 From: Michael Richardson Date: Mon, 18 Oct 2021 10:41:13 -0500 Subject: [PATCH] Remove references to Devsite Markdown processor --- claat/parser/md/parse.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/claat/parser/md/parse.go b/claat/parser/md/parse.go index fc53217b1..e0cd6c37a 100644 --- a/claat/parser/md/parse.go +++ b/claat/parser/md/parse.go @@ -13,7 +13,7 @@ // limitations under the License. // Package md implements a parser for CLaaT. It expects, as input, the output of running a Markdown file through -// the Devsite Markdown processor. +// the Markdown processor. package md import ( @@ -240,7 +240,7 @@ func renderToHTML(b []byte) ([]byte, error) { return out.Bytes(), nil } -// parseMarkup accepts html nodes to markup created by the Devsite Markdown parser. It returns a pointer to a codelab object, or an error if one occurs. +// parseMarkup accepts html nodes to markup created by the Markdown parser. It returns a pointer to a codelab object, or an error if one occurs. func parseMarkup(markup *html.Node, opts parser.Options) (*types.Codelab, error) { body := findAtom(markup, atom.Body) if body == nil {