Butterfly document - Changelog
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog 4.9.0 (2023/06/06)4.9.0 (2023/06/06)Feature Adapted to mermaid v10 When the screen is larger than 2000px, the display area is ...
Butterfly document - Advanced Tutorial
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog Suggestions Avoid placing personal files/images in the source folder of the main theme. During theme upgrades, these files may be ov ...
Butterfly document - Q&A
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog Here are some issues encountered by users during the installation process. Before asking a question, please check if there are any soluti ...
Butterfly document - Theme Configuration Part 2
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog MathMathJaxKaTeXDo not use MathJax syntax in the headings; the TOC may not display MathJax properly and may show the MathJax code instead ...
Butterfly document - Theme Configuration Part 1
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog LanguageModify the site configuration file _config.yml. The default language is set to English (en). The theme supports three languages: ...
Butterfly document - Theme Pages
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog Front-matterFront-matter is the section at the top of a Markdown file, separated by ---, and is used to specify variables for individual ...
Butterfly document - Get Started
This article is translated from ChatGPT. π This tutorial was last updated on June 6, 2023, and the content is based on the latest stable version. π¦ Butterfly has been updated to 4.9.0. π Table of Contents π Get Started - π Theme Pages - π Theme Configuration Part 1 - βοΈ Theme Configuration Part 2 - β Q&A - β‘οΈ Advanced Tutorials - β¨ Changelog hexo-theme-butterfly is developed based on hexo-theme-melody. InstallationGit (Github)Git (Gitee)npm InstallationStable Version [Recommen ...
Custom Sidebar
Applicable to >= 3.8.0 The sidebar now supports customization, allowing you to add your favorite widgets. You can add your own widgets or sort existing ones (the Blog Data and Announcement widgets are fixed, but others can be sorted). Widget SortingYou only need to configure the sort_order. (It uses the order property of the Flex layout. For specific details, you can refer to the Mozilla documentation. In simple terms, use numbers to specify the sorting order. If not configured, the de ...
When Setting top_img to false
When the top_img is set to false, the top image is not displayed.
Customize code coloring
In the Butterfly document - Theme Configuration Part 1, the process of using custom code highlighting themes has been explained. This article serves as a practical tutorial on using custom code coloring. HighlightWe'll take the example of using the Kimbie dark theme for code coloring. Configure hljs to trueModify the _config.yml file in the root directory of your Hexo project. 123456highlight: enable: true line_number: true auto_detect: false tab_replace: hljs: true Configure highlight ...