-
Notifications
You must be signed in to change notification settings - Fork 432
Open
Labels
Milestone
Description
version: tidy-5.6.0-vc10-32b.zip | 2017/11/28 14:48:00
Tested with 5.7.16 same result
Is there a way to add new lines after specific inline tags?
Input
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<button>66</button>
<button>55</button>
</body>
</html>
Output
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<button>66</button> <button>55</button>
</body>
</html>
dyllandry