You mentioned using Markdown for site audit reports at BADCamp 2015. The arguments to use markdown make sense.

It would be really handy if we could specify Markdown as an output option so the output of Site Audit could be copied into a site audit report.

Thanks for a great module.

Comments

greggmarshall created an issue.

FluxSauce’s picture

Hi Gregg, thanks for the kind words and for coming! To make this happen, I need to implement a renderer that can parse standardized Site Audit output into HTML, Markdown, and plain text...

or do everything in markdown, then render markdown as HTML or plain text?

Hm. That might be simpler. Thinking about it.

greggmarshall’s picture

Generating Markdown then rendering it to HTML seems easier to me, but then you'd have to include, or require a dependency on, the markdown library.

benjifisher’s picture

Why not use Pandoc?

drush aa --detail --html | pandoc -o /tmp/report.md

I get better results when I leave off the --bootstrap option.