Pretty print html output from Jekyll
问题 Is there any way to pretty print html output from Jekyll? For example, below is a snippet of html that Jekyll generates. Notice how the <p> tags have no indentation and have unnecessary line breaks after them. ... <div id="content"> <p class="flush">Post 1</p> <p class="flush">Post 2</p> <p class="flush">Post 3</p> </div> ... I'm imagining an option or plugin that would pretty print like this instead: ... <div id="content"> <p class="flush">Post 1</p> <p class="flush">Post 2</p> <p class=