hexo-theme-redefine
hexo-theme-redefine copied to clipboard
feat:add custom twitter_card selection
I found that every page' s twitter_card attribute is 'summary', so I make it Customizable。
The code changes are similar to the PR I submitted last time
Summary by CodeRabbit
-
New Features
- Enhanced handling of the
twitter_cardproperty in Open Graph meta tags. - Introduced a variable for dynamic assignment of the
twitter_cardvalue.
- Enhanced handling of the
-
Bug Fixes
- Added a deprecation warning for the
open_graphproperty to guide users towards the new format.
- Added a deprecation warning for the
-
Style
- Improved formatting and whitespace consistency in the
_config.ymlfile.
- Improved formatting and whitespace consistency in the
📝 Walkthrough
Walkthrough
The changes in this pull request involve formatting and whitespace adjustments in the _config.yml file of the Hexo theme, enhancing YAML consistency without altering functionality. Additionally, the layout/components/header/head.ejs file has been modified to improve the handling of the twitter_card property in Open Graph meta tags. A new variable captures the value of page.twitter_card, and a deprecation warning is introduced for the open_graph property when set to true. Overall, these changes focus on readability and maintainability.
Changes
| File Path | Change Summary |
|---|---|
_config.yml |
Removed trailing spaces for keys and values in defaults, global, footer, inject, and plugins sections for improved formatting. |
layout/components/header/head.ejs |
Introduced let twitterCard to capture page.twitter_card value, replacing hardcoded 'summary'. Added deprecation warning for open_graph property. |
Sequence Diagram(s)
sequenceDiagram
participant User
participant EJS Template
participant OpenGraph
User->>EJS Template: Request page
EJS Template->>OpenGraph: Check twitter_card
OpenGraph-->>EJS Template: Return twitter_card value
EJS Template->>User: Render page with Open Graph meta tags
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
🪧 Tips
Chat
There are 3 ways to chat with CodeRabbit:
- Review comments: Directly reply to a review comment made by CodeRabbit. Example:
I pushed a fix in commit <commit_id>, please review it.Generate unit testing code for this file.Open a follow-up GitHub issue for this discussion.
- Files and specific lines of code (under the "Files changed" tab): Tag
@coderabbitaiin a new review comment at the desired location with your query. Examples:@coderabbitai generate unit testing code for this file.@coderabbitai modularize this function.
- PR comments: Tag
@coderabbitaiin a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:@coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.@coderabbitai read src/utils.ts and generate unit testing code.@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.@coderabbitai help me debug CodeRabbit configuration file.
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.
CodeRabbit Commands (Invoked using PR comments)
@coderabbitai pauseto pause the reviews on a PR.@coderabbitai resumeto resume the paused reviews.@coderabbitai reviewto trigger an incremental review. This is useful when automatic reviews are disabled for the repository.@coderabbitai full reviewto do a full review from scratch and review all the files again.@coderabbitai summaryto regenerate the summary of the PR.@coderabbitai resolveresolve all the CodeRabbit review comments.@coderabbitai configurationto show the current CodeRabbit configuration for the repository.@coderabbitai helpto get help.
Other keywords and placeholders
- Add
@coderabbitai ignoreanywhere in the PR description to prevent this PR from being reviewed. - Add
@coderabbitai summaryto generate the high-level summary at a specific location in the PR description. - Add
@coderabbitaianywhere in the PR title to generate the title automatically.
Documentation and Community
- Visit our Documentation for detailed information on how to use CodeRabbit.
- Join our Discord Community to get help, request features, and share feedback.
- Follow us on X/Twitter for updates and announcements.
Everything is good except that I don't like your formatted config.yml. Can you please revert it? Thanks!