Skip to content

Commit

Permalink
Markdown spec has no indentation for lists
Browse files Browse the repository at this point in the history
  • Loading branch information
dbent committed Jun 13, 2015
1 parent 0a0f08c commit c3ae159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Exporters/MarkdownExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down

0 comments on commit c3ae159

Please sign in to comment.