Files
cheatsheet-tldr/tldr/tidy
2025-03-29 00:18:23 +00:00

23 lines
678 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# tidy
> Clean up and pretty print HTML, XHTML and XML files.
> Note: `tidy` cannot preserve original indentation.
> More information: <https://api.html-tidy.org/tidy/tidylib_api_5.2.0/tidy_cmd.html>.
- Pretty print an HTML file:
`tidy {{path/to/file.html}}`
- Enable indentation, wrapping lines in 100, saving to `output.html`:
`tidy {{[-i|--indent]}} y {{[-w|--wrap]}} 100 {{[-o|-output]}} {{path/to/output.html}} {{path/to/file.html}}`
- Modify an HTML file in-place using a configuration file:
`tidy -config {{path/to/configuration}} {{[-m|-modify]}} {{path/to/file.html}}`