hexo-theme-redefine icon indicating copy to clipboard operation
hexo-theme-redefine copied to clipboard

feat:add custom twitter_card selection

Open BrotherJie opened this issue 11 months ago • 2 comments

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_card property in Open Graph meta tags.
    • Introduced a variable for dynamic assignment of the twitter_card value.
  • Bug Fixes

    • Added a deprecation warning for the open_graph property to guide users towards the new format.
  • Style

    • Improved formatting and whitespace consistency in the _config.yml file.

BrotherJie avatar Dec 08 '24 13:12 BrotherJie

📝 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?

❤️ Share
🪧 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 @coderabbitai in 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 @coderabbitai in 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 pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere 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.

coderabbitai[bot] avatar Dec 08 '24 13:12 coderabbitai[bot]

Everything is good except that I don't like your formatted config.yml. Can you please revert it? Thanks!

EvanNotFound avatar Feb 26 '25 01:02 EvanNotFound