// constants/htmlFormatConstants.js
const BEAUTIFY_OPTIONS = {
indent_size: 2,
wrap_line_length: 80,
end_with_newline: true,
};
const ERROR_MESSAGES = {
BEAUTIFY_ERROR: "Beautify error:",
};
module.exports = {
BEAUTIFY_OPTIONS,
ERROR_MESSAGES,
};