Description: Change default rendering enging to Text::Markdown::Discount
 To respect our users privacy, the default engine should be,
 Text::Markdown::Discount rather than use the Github API.
Forwarded: not-needed
Author: Andrew Ruthven <andrew@etc.gen.nz>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2025-10-05

---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/bin/md-utils.pl
+++ b/bin/md-utils.pl
@@ -57,7 +57,7 @@
 -B, --body     default is to add body tag, use --nobody to prevent    
 -b, --both     interpolates intermediate file and renders HTML
 -c, --css      css file
--e, --engine   github, text_markdown (default: github)
+-e, --engine   github, text_markdown (default: text_markdown)
 -h             help
 -i, --infile   input file, default: STDIN
 -m, --mode     for GitHub API mode is 'gfm' or 'markdown' (default: markdown)
--- a/lib/Markdown/Render.pm
+++ b/lib/Markdown/Render.pm
@@ -57,7 +57,7 @@
   $options{title}  //= $TOC_TITLE;
   $options{css}    //= $options{nocss} ? $EMPTY : $DEFAULT_CSS;
   $options{mode}   //= 'markdown';
-  $options{engine} //= 'github';
+  $options{engine} //= 'text_markdown';
 
   my $self = $class->SUPER::new( \%options );
 
@@ -530,7 +530,7 @@
 
 One of C<github> or C<text_markdown>.
 
-default: github
+default: text_markdown
 
 =item git_user
 
