Skip to content

Instantly share code, notes, and snippets.

@ideabucket
Last active December 30, 2022 15:53
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ideabucket/5231db1261ed0f15bd59 to your computer and use it in GitHub Desktop.
Save ideabucket/5231db1261ed0f15bd59 to your computer and use it in GitHub Desktop.
BBEdit text filter to replace Markup → Tidy → Reflow XML

As of BBEdit 13.1, the HTML Tidy built-ins are back and you should use those instead. This gist is so old it refers to "OS X", c’mon!

If for some reason you are using this, note @ryanfrancesconi’s comment about the correct place to put the file when using sandboxed versions of BBEdit.

#!/usr/bin/env bash
# put this file in [Library location]/Application Support/BBedit/Text Filters/
# xmllint ships by default in recent versions of OS X
xmllint --format -
@ideabucket
Copy link
Author

This is still useful - not sure if there is a better option yet. BBEdit's Tidy is somewhat limited.

I'm extremely curious to know what the difference is. If it seriously is still useful I'll wrap it up in a .bbpackage to make installation simpler.

@ryanfrancesconi
Copy link

The difference is lack of control over how white space is handled... I don't know if tidy has some options that I haven't seen? I like that you can setup the lint to be however you want. I really only use it for quick syntax checks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment