-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
save_html()
now works correctly with components and pages with non-default theme values
#823
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d18c684
Close #477. save_html() now works correctly with components and pages…
cpsievert 3a92a96
`devtools::document()` (GitHub Actions)
cpsievert a722f86
Require latest dev htmltools
cpsievert b096a70
`devtools::document()` (GitHub Actions)
cpsievert 0b0999b
Add internal reference pages; update news
cpsievert b4caa65
`devtools::document()` (GitHub Actions)
cpsievert a93720f
Add a couple snapshot tests
cpsievert 4dbbbf0
Merge branch 'main' into save-html
cpsievert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<style>body{background-color:white;}</style> | ||
<script src="lib/jquery/jquery-3.6.0.min.js"></script> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<link href="lib/bootstrap/bootstrap.min.css" rel="stylesheet" /> | ||
<script src="lib/bootstrap/bootstrap.bundle.min.js"></script> | ||
<script src="lib/bslib-component-js/components.min.js"></script> | ||
<script src="lib/bslib-component-js/web-components.min.js" type="module"></script> | ||
<link href="lib/bslib-component-css/components.css" rel="stylesheet" /> | ||
<script src="lib/bs3compat/transition.js"></script> | ||
<script src="lib/bs3compat/tabs.js"></script> | ||
<script src="lib/bs3compat/bs3compat.js"></script> | ||
<link href="lib/htmltools-fill/fill.css" rel="stylesheet" /> | ||
<script src="lib/bslib-tag-require/tag-require.js"></script> | ||
|
||
</head> | ||
<body> | ||
<div class="container-fluid"> | ||
<div class="card bslib-card bslib-mb-spacing html-fill-item html-fill-container" data-bslib-card-init data-require-bs-caller="card()" data-require-bs-version="5"> | ||
<div class="card-body bslib-gap-spacing html-fill-item html-fill-container" style="margin-top:auto;margin-bottom:auto;flex:1 1 auto;">A simple card</div> | ||
<script data-bslib-card-init>bslib.Card.initializeAllCards();</script> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<style>body{background-color:white;}</style> | ||
<script src="lib/jquery/jquery-3.6.0.min.js"></script> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<link href="lib/bootstrap/bootstrap.min.css" rel="stylesheet" /> | ||
<script src="lib/bootstrap/bootstrap.bundle.min.js"></script> | ||
<script src="lib/bslib-component-js/components.min.js"></script> | ||
<script src="lib/bslib-component-js/web-components.min.js" type="module"></script> | ||
<link href="lib/bslib-component-css/bslib-component-css.min.css" rel="stylesheet" /> | ||
|
||
</head> | ||
<body>A simple page without bs3compat dependencies</body> | ||
</html> |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
main
should already be on0.5.6.9000
🙈