-
Notifications
You must be signed in to change notification settings - Fork 447
Open
Labels
Description
Description
I use Jekyll as a static-site-generator and often HTML-code in included in my .md-files. I want to auto-indent the HTMl but neither Atoms Auto-Indent function nor atom-beautify seems to work for that..
Input Before Beautification
---
layout: default
permalink: /test.html
title: Test-Site
---
<div>
<div>
</div>
<p>
</p>
</div>
Expected Output
---
layout: default
permalink: /test.html
title: Test-Site
---
<div>
<div>
</div>
<p>
</p>
</div>
Actual Output
---
layout: default
permalink: /test.html
title: Test-Site
---
<div>
<div>
</div>
<p>
</p>
</div>
Steps to Reproduce
- Add code to Atom editor
- Run command
Atom Beautify: Beautify Editor
- This beautified code does not look right!
Debug
Here is a link to the debug.md
Gist: https://gist.github.com/dkerzig/17ce01d9e44acf1c7719f89ca6eb5bf5
Thanks in advance!
Dennis