From c3ae159db63f2d55c8db3e612f9ad3fb707c067d Mon Sep 17 00:00:00 2001 From: Dwayne Bent Date: Sat, 13 Jun 2015 08:30:27 -0400 Subject: [PATCH] Markdown spec has no indentation for lists --- Core/Exporters/MarkdownExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Exporters/MarkdownExporter.cs b/Core/Exporters/MarkdownExporter.cs index 20a3197bf9..87f3434106 100644 --- a/Core/Exporters/MarkdownExporter.cs +++ b/Core/Exporters/MarkdownExporter.cs @@ -11,7 +11,7 @@ public void Export(Registry registry, Stream stream) { foreach (var mod in registry.InstalledModules.OrderBy(i => i.Module.name)) { - writer.WriteLine(@" - **{0}** `{1} {2}`", mod.Module.name, mod.identifier, mod.Module.version); + writer.WriteLine(@"- **{0}** `{1} {2}`", mod.Module.name, mod.identifier, mod.Module.version); } } }