Adjusting indentation

This commit is contained in:
Anders Hejlsberg
2015-12-17 16:50:22 -08:00
parent 3f65a31a4f
commit 549fbf58ac
3 changed files with 6 additions and 6 deletions

View File

@@ -130,7 +130,7 @@ function convertDocumentToMarkdown(doc) {
}
else if (containsImage) {
imageCount++;
write("![](images/image" + imageCount + ".png)\n\n");
write("   ![](images/image" + imageCount + ".png)\n\n");
text = "";
}
else if (style.match(/\s\d$/)) {

View File

@@ -279,7 +279,7 @@ function convertDocumentToMarkdown(doc: Word.Document): string {
}
else if (containsImage) {
imageCount++;
write("![](images/image" + imageCount + ".png)\n\n");
write("   ![](images/image" + imageCount + ".png)\n\n");
text = "";
}
else if (style.match(/\s\d$/)) {