-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default word break to trix content (#150)
* fix: add default word-break to .trix-content * add changeset * upgrade bridgetown version
- Loading branch information
1 parent
36e4b82
commit 98bb49c
Showing
9 changed files
with
155 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"rhino-editor": patch | ||
--- | ||
|
||
Add default word-break to .trix-content <https://github.com/basecamp/trix/pull/1126> |
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,22 @@ | ||
Bridgetown.configure do |config| | ||
config.url = ENV["URL"] || ENV["RELEASE_URL"] || "https://rhino-editor.vercel.app" | ||
config.base_path = ENV.fetch("BASE_PATH", "/") | ||
config.base_url = config.url + config.base_path | ||
config.base_path_with_trailing_slash = config.base_path.ends_with?("/") ? config.base_path : config.base_path + "/" | ||
config.base_path_no_trailing_slash = config.base_path.gsub(/\/$/, "") | ||
init :"bridgetown-quick-search" | ||
|
||
# init :ssr | ||
# init :"bridgetown-routes" | ||
# only :server do | ||
# roda do |app| | ||
# app.plugin :default_headers, | ||
# 'Content-Type'=>'text/html', | ||
# 'Strict-Transport-Security'=>'max-age=16070400;', | ||
# 'X-Content-Type-Options'=>'nosniff', | ||
# 'X-Frame-Options'=>'deny', | ||
# 'X-XSS-Protection'=>'1; mode=block', | ||
# 'Access-Control-Allow-Origin'=>'*' | ||
# end | ||
# end | ||
end |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.