From 95dbcc9a30c4fdbf6aa6ca51d6d12a3c9cb4af89 Mon Sep 17 00:00:00 2001 From: Curtis Schlak <156-curtis@users.noreply.gitlab.galvanize.com> Date: Sun, 24 Mar 2024 19:31:58 -0500 Subject: [PATCH] Delete some lines leftover from the Markdown command refactor --- app/cmd/root.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/cmd/root.go b/app/cmd/root.go index 183c828..68a826e 100644 --- a/app/cmd/root.go +++ b/app/cmd/root.go @@ -120,11 +120,6 @@ func init() { publishCmd.Flags().StringVarP(&UnitsDirectory, "units", "u", "", "The directory where your units exist") publishCmd.Flags().BoolVarP(&IgnoreLocal, "ignore-local", "", false, "Ignore local changes and publish remote only") publishCmd.Flags().BoolVarP(&CiCdEnvironment, "ci-cd", "", false, "Running in a CI/CD environment (cannot use with autoconfig feature)") - // markdownCmd.Flags().BoolVarP(&PrintTemplate, "out", "o", false, "Prints the template to stdout") - // markdownCmd.Flags().BoolVarP(&Minimal, "min", "m", false, "Uses a terse, minimal version of the template") - // markdownCmd.Flags().BoolVarP(&WithExplanation, "with-explanation", "e", false, "Questions only: include explanation blocks") - // markdownCmd.Flags().BoolVarP(&WithRubric, "with-rubric", "r", false, "Questions only: include rubric blocks") - // markdownCmd.Flags().IntVarP(&WithHints, "with-hints", "n", 0, "Questions only: include one or more hint blocks") } // Execute runs the learn CLI according to the user's command/subcommand/flags