-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- _Balthisar Tidy_ and _Balthisar Tidy for Work_: - Update to HTML Tidy 5.7.0. - New Tidy options such as `add-meta-charset`, `priority-attributes`, `show-meta-change`, `keep-tabs`. - You can now double-click into a Tidy Option with a text field, and the text field will activate. - You can triple click a text field that uses lists, and the list editor will pop up. This can be much nicer than managing long lists in a single string. - Tidy Option text fields that are lists now reflect the proper formatting for lists. - Adopted all of the new Tidy Option categories offered by the latest **HTML Tidy**. - We now issue advice to turn on `force-output` if a loaded document produced no content. - Removed the `markup` Tidy option, because **Balthisar Tidy** handles this automatically. - Updated the Help book to include updates to Tidy options. - Developer changes: - Internal changes to make future maintenance of **Balthisar Tidy** better. - I've removed all of the different, redundant targets, and now different versions are built via the xcconfig files. - Built versions of **Balthisar Tidy** are now a smaller. The Tidy Extensions and Tidy Service Helper now rely on **Balthisar Tidy**'s frameworks where possible rather than including their own, duplicate copies.
- Loading branch information
Showing
111 changed files
with
12,196 additions
and
8,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
##################################################################### | ||
# Used to build from Xcode or another build system. | ||
##################################################################### | ||
|
||
if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then | ||
source "$HOME/.rvm/scripts/rvm" | ||
elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then | ||
source "/usr/local/rvm/scripts/rvm" | ||
else | ||
printf "ERROR: An RVM installation was not found.\n" | ||
exit 128 | ||
fi | ||
|
||
cd "$PROJECT_DIR/Balthisar Tidy Help Project/" | ||
rvm use default | ||
bundle exec middleman all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.