more winutil website updates (#3967)

* changed autolinks to now use frontmatter instead off #heading

* updated all docs with front matter names

* Update DisableLegacyRecovery.md

this was the same as EnableLegacyRecovery file

* made sure pages have got the corrects scripts on them

* Update default.md

updated the archetype default to make sure every new page had the title and description automatically on the front matter

* Create BraveDebloat.md

* added brave debloat link to tweaks.json

* Update tweaks.json

* Update tweaks.json
This commit is contained in:
Sean (ANGRYxScotsman)
2026-02-10 19:49:36 +00:00
committed by GitHub
parent a12ea71adb
commit 8fc7d30112
75 changed files with 349 additions and 152 deletions
+2 -1
View File
@@ -1173,7 +1173,8 @@
"Value": "0", "Value": "0",
"OriginalValue": "<RemoveEntry>" "OriginalValue": "<RemoveEntry>"
} }
] ],
"link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/bravedebloat/"
}, },
"WPFTweaksEdgeDebloat": { "WPFTweaksEdgeDebloat": {
"Content": "Edge Debloat", "Content": "Edge Debloat",
+2 -1
View File
@@ -1,5 +1,6 @@
--- ---
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
description: ""
date: '{{ .Date }}' date: '{{ .Date }}'
draft: true draft: true
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
--- ---
@@ -1,12 +1,14 @@
# Disable Legacy F8 Boot Recovery ---
title: "Disable Legacy F8 Boot Recovery"
description: ""
---
```json ```json
"WPFFeatureEnableLegacyRecovery": { "WPFFeatureDisableLegacyRecovery": {
"Content": "Enable Legacy F8 Boot Recovery", "Content": "Disable Legacy F8 Boot Recovery",
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
"category": "Features", "category": "Features",
"panel": "1", "panel": "1",
"Order": "a018_", "Order": "a019_",
"feature": [], "feature": [],
"InvokeScript": [ "InvokeScript": [
"bcdedit /set bootmenupolicy standard" "bcdedit /set bootmenupolicy standard"
@@ -1,7 +1,9 @@
# Enable Legacy F8 Boot Recovery ---
title: "Enable Legacy F8 Boot Recovery"
description: ""
---
```json ```json
"WPFFeatureEnableLegacyRecovery": { "WPFFeatureEnableLegacyRecovery": {
"Content": "Enable Legacy F8 Boot Recovery", "Content": "Enable Legacy F8 Boot Recovery",
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
"category": "Features", "category": "Features",
@@ -1,5 +1,7 @@
# Enable Daily Registry Backup Task 12.30am ---
title: "Enable Daily Registry Backup Task 12.30am"
description: ""
---
```json ```json
"WPFFeatureRegBackup": { "WPFFeatureRegBackup": {
"Content": "Enable Daily Registry Backup Task 12.30am", "Content": "Enable Daily Registry Backup Task 12.30am",
@@ -1,5 +1,7 @@
# Windows Sandbox ---
title: "Windows Sandbox"
description: ""
---
```json ```json
"WPFFeaturesSandbox": { "WPFFeaturesSandbox": {
"Content": "Windows Sandbox", "Content": "Windows Sandbox",
+4 -2
View File
@@ -1,5 +1,7 @@
# All .Net Framework (2,3,4) ---
title: "All .Net Framework (2,3,4)"
description: ""
---
```json ```json
"WPFFeaturesdotnet": { "WPFFeaturesdotnet": {
"Content": "All .Net Framework (2,3,4)", "Content": "All .Net Framework (2,3,4)",
+4 -2
View File
@@ -1,5 +1,7 @@
# HyperV Virtualization ---
title: "HyperV Virtualization"
description: ""
---
```json ```json
"WPFFeatureshyperv": { "WPFFeatureshyperv": {
"Content": "HyperV Virtualization", "Content": "HyperV Virtualization",
@@ -1,5 +1,7 @@
# Legacy Media (WMP, DirectPlay) ---
title: "Legacy Media (WMP, DirectPlay)"
description: ""
---
```json ```json
"WPFFeatureslegacymedia": { "WPFFeatureslegacymedia": {
"Content": "Legacy Media (WMP, DirectPlay)", "Content": "Legacy Media (WMP, DirectPlay)",
+4 -2
View File
@@ -1,5 +1,7 @@
# NFS - Network File System ---
title: "NFS - Network File System"
description: ""
---
```json ```json
"WPFFeaturenfs": { "WPFFeaturenfs": {
"Content": "NFS - Network File System", "Content": "NFS - Network File System",
+4 -2
View File
@@ -1,5 +1,7 @@
# Windows Subsystem for Linux ---
title: "Windows Subsystem for Linux"
description: ""
---
```json ```json
"WPFFeaturewsl": { "WPFFeaturewsl": {
"Content": "Windows Subsystem for Linux", "Content": "Windows Subsystem for Linux",
+4 -2
View File
@@ -1,5 +1,7 @@
# Set Up Autologin ---
title: "Set Up Autologin"
description: ""
---
```powershell ```powershell
function Invoke-WPFPanelAutologin { function Invoke-WPFPanelAutologin {
<# <#
@@ -1,5 +1,7 @@
# System Corruption Scan ---
title: "System Corruption Scan"
description: ""
---
```powershell ```powershell
function Invoke-WPFSystemRepair { function Invoke-WPFSystemRepair {
<# <#
+4 -2
View File
@@ -1,5 +1,7 @@
# Reset Network ---
title: "Reset Network"
description: ""
---
```powershell ```powershell
function Invoke-WPFFixesNetwork { function Invoke-WPFFixesNetwork {
<# <#
@@ -1,5 +1,7 @@
# Remove Adobe Creative Cloud ---
title: "Remove Adobe Creative Cloud"
description: ""
---
```powershell ```powershell
function Invoke-WPFRunAdobeCCCleanerTool { function Invoke-WPFRunAdobeCCCleanerTool {
<# <#
+4 -2
View File
@@ -1,5 +1,7 @@
# Reset Windows Update ---
title: "Reset Windows Update"
description: ""
---
```powershell ```powershell
function Invoke-WPFFixesUpdate { function Invoke-WPFFixesUpdate {
+4 -2
View File
@@ -1,5 +1,7 @@
# WinGet Reinstall ---
title: "WinGet Reinstall"
description: ""
---
```powershell ```powershell
function Invoke-WPFFixesWinget { function Invoke-WPFFixesWinget {
@@ -1,5 +1,7 @@
# Control Panel ---
title: "Control Panel"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# Network Connections ---
title: "Network Connections"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# Power Panel ---
title: "Power Panel"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# Printer Settings ---
title: "Printer Settings"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# Region ---
title: "Region"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# Sound Settings ---
title: "Sound Settings"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# System Properties ---
title: "System Properties"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# User Accounts ---
title: "User Accounts"
description: ""
---
```powershell ```powershell
function Invoke-WPFControlPanel { function Invoke-WPFControlPanel {
<# <#
@@ -1,5 +1,7 @@
# Bing Search in Start Menu ---
title: "Bing Search in Start Menu"
description: ""
---
```json ```json
"WPFToggleBingSearch": { "WPFToggleBingSearch": {
"Content": "Bing Search in Start Menu", "Content": "Bing Search in Start Menu",
@@ -1,5 +1,7 @@
# Dark Theme for Windows ---
title: "Dark Theme for Windows"
description: ""
---
```json ```json
"WPFToggleDarkMode": { "WPFToggleDarkMode": {
"Content": "Dark Theme for Windows", "Content": "Dark Theme for Windows",
@@ -1,5 +1,7 @@
# Detailed BSoD ---
title: "Detailed BSoD"
description: ""
---
```json ```json
"WPFToggleDetailedBSoD": { "WPFToggleDetailedBSoD": {
"Content": "Detailed BSoD", "Content": "Detailed BSoD",
@@ -1,5 +1,7 @@
# Show Hidden Files ---
title: "Show Hidden Files"
description: ""
---
```json ```json
"WPFToggleHiddenFiles": { "WPFToggleHiddenFiles": {
"Content": "Show Hidden Files", "Content": "Show Hidden Files",
@@ -1,5 +1,7 @@
# Mouse Acceleration ---
title: "Mouse Acceleration"
description: ""
---
```json ```json
"WPFToggleMouseAcceleration": { "WPFToggleMouseAcceleration": {
"Content": "Mouse Acceleration", "Content": "Mouse Acceleration",
@@ -1,5 +1,7 @@
# NumLock on Startup ---
title: "NumLock on Startup"
description: ""
---
```json ```json
"WPFToggleNumLock": { "WPFToggleNumLock": {
"Content": "NumLock on Startup", "Content": "NumLock on Startup",
@@ -1,5 +1,7 @@
# Show File Extensions ---
title: "Show File Extensions"
description: ""
---
```json ```json
"WPFToggleShowExt": { "WPFToggleShowExt": {
"Content": "Show File Extensions", "Content": "Show File Extensions",
@@ -1,5 +1,7 @@
# Snap Assist Flyout ---
title: "Snap Assist Flyout"
description: ""
---
```json ```json
"WPFToggleSnapFlyout": { "WPFToggleSnapFlyout": {
"Content": "Snap Assist Flyout", "Content": "Snap Assist Flyout",
@@ -1,5 +1,7 @@
# Snap Assist Suggestion ---
title: "Snap Assist Suggestion"
description: ""
---
```json ```json
"WPFToggleSnapSuggestion": { "WPFToggleSnapSuggestion": {
"Content": "Snap Assist Suggestion", "Content": "Snap Assist Suggestion",
@@ -1,5 +1,7 @@
# Snap Window ---
title: "Snap Window"
description: ""
---
```json ```json
"WPFToggleSnapWindow": { "WPFToggleSnapWindow": {
"Content": "Snap Window", "Content": "Snap Window",
@@ -1,5 +1,7 @@
# Sticky Keys ---
title: "Sticky Keys"
description: ""
---
```json ```json
"WPFToggleStickyKeys": { "WPFToggleStickyKeys": {
"Content": "Sticky Keys", "Content": "Sticky Keys",
@@ -1,5 +1,7 @@
# Task View Button in Taskbar ---
title: "Task View Button in Taskbar"
description: ""
---
```json ```json
"WPFToggleTaskView": { "WPFToggleTaskView": {
"Content": "Task View Button in Taskbar", "Content": "Task View Button in Taskbar",
@@ -1,5 +1,7 @@
# Center Taskbar Items ---
title: "Center Taskbar Items"
description: ""
---
```json ```json
"WPFToggleTaskbarAlignment": { "WPFToggleTaskbarAlignment": {
"Content": "Center Taskbar Items", "Content": "Center Taskbar Items",
@@ -1,5 +1,7 @@
# Search Button in Taskbar ---
title: "Search Button in Taskbar"
description: ""
---
```json ```json
"WPFToggleTaskbarSearch": { "WPFToggleTaskbarSearch": {
"Content": "Search Button in Taskbar", "Content": "Search Button in Taskbar",
@@ -1,5 +1,7 @@
# Widgets Button in Taskbar ---
title: "Widgets Button in Taskbar"
description: ""
---
```json ```json
"WPFToggleTaskbarWidgets": { "WPFToggleTaskbarWidgets": {
"Content": "Widgets Button in Taskbar", "Content": "Widgets Button in Taskbar",
@@ -1,5 +1,7 @@
# Verbose Messages During Logon ---
title: "Verbose Messages During Logon"
description: ""
---
```json ```json
"WPFToggleVerboseLogon": { "WPFToggleVerboseLogon": {
"Content": "Verbose Messages During Logon", "Content": "Verbose Messages During Logon",
@@ -1,4 +1,8 @@
# Disable Activity History ---
title: Activity History
description: ""
---
## code we use:
```json ```json
"WPFTweaksActivity": { "WPFTweaksActivity": {
@@ -33,6 +37,7 @@
``` ```
## Registry Changes ## Registry Changes
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place. Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry). You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
@@ -1,5 +1,7 @@
# Disable ConsumerFeatures ---
title: "Disable ConsumerFeatures"
description: ""
---
```json ```json
"WPFTweaksConsumerFeatures": { "WPFTweaksConsumerFeatures": {
"Content": "Disable ConsumerFeatures", "Content": "Disable ConsumerFeatures",
@@ -1,5 +1,7 @@
# Delete Temporary Files ---
title: "Delete Temporary Files"
description: ""
---
```json ```json
"WPFTweaksDeleteTempFiles": { "WPFTweaksDeleteTempFiles": {
"Content": "Delete Temporary Files", "Content": "Delete Temporary Files",
@@ -1,5 +1,7 @@
# Run Disk Cleanup ---
title: "Run Disk Cleanup"
description: ""
---
```json ```json
"WPFTweaksDiskCleanup": { "WPFTweaksDiskCleanup": {
"Content": "Run Disk Cleanup", "Content": "Run Disk Cleanup",
@@ -1,5 +1,7 @@
# Debloat Edge ---
title: "Debloat Edge"
description: ""
---
```json ```json
"WPFTweaksEdgeDebloat": { "WPFTweaksEdgeDebloat": {
"Content": "Edge Debloat", "Content": "Edge Debloat",
@@ -1,5 +1,7 @@
# Enable End Task With Right Click ---
title: "Enable End Task With Right Click"
description: ""
---
```json ```json
"WPFTweaksEndTaskOnTaskbar": { "WPFTweaksEndTaskOnTaskbar": {
"Content": "Enable End Task With Right Click", "Content": "Enable End Task With Right Click",
@@ -1,5 +1,7 @@
# Disable GameDVR ---
title: "Disable GameDVR"
description: ""
---
```json ```json
"WPFTweaksDVR": { "WPFTweaksDVR": {
"Content": "Disable GameDVR", "Content": "Disable GameDVR",
@@ -1,5 +1,7 @@
# Disable Hibernation ---
title: "Disable Hibernation"
description: ""
---
```json ```json
"WPFTweaksHiber": { "WPFTweaksHiber": {
"Content": "Disable Hibernation", "Content": "Disable Hibernation",
@@ -1,5 +1,7 @@
# Prefer IPv4 over IPv6 ---
title: "Prefer IPv4 over IPv6"
description: ""
---
```json ```json
"WPFTweaksIPv46": { "WPFTweaksIPv46": {
"Content": "Prefer IPv4 over IPv6", "Content": "Prefer IPv4 over IPv6",
@@ -1,5 +1,7 @@
# Set Hibernation as default (good for laptops) ---
title: "Set Hibernation as default (good for laptops)"
description: ""
---
```json ```json
"WPFTweaksLaptopHibernation": { "WPFTweaksLaptopHibernation": {
"Content": "Set Hibernation as default (good for laptops)", "Content": "Set Hibernation as default (good for laptops)",
@@ -1,5 +1,7 @@
# Disable Location Tracking ---
title: "Disable Location Tracking"
description: ""
---
```json ```json
"WPFTweaksLocation": { "WPFTweaksLocation": {
"Content": "Disable Location Tracking", "Content": "Disable Location Tracking",
@@ -1,5 +1,7 @@
# Disable Powershell 7 Telemetry ---
title: "Disable Powershell 7 Telemetry"
description: ""
---
```json ```json
"WPFTweaksPowershell7Tele": { "WPFTweaksPowershell7Tele": {
"Content": "Disable Powershell 7 Telemetry", "Content": "Disable Powershell 7 Telemetry",
@@ -1,5 +1,7 @@
# Create Restore Point ---
title: "Create Restore Point"
description: ""
---
```json ```json
"WPFTweaksRestorePoint": { "WPFTweaksRestorePoint": {
"Content": "Create Restore Point", "Content": "Create Restore Point",
@@ -1,5 +1,7 @@
# Set Services to Manual ---
title: "Set Services to Manual"
description: ""
---
```json ```json
"WPFTweaksServices": { "WPFTweaksServices": {
"Content": "Set Services to Manual", "Content": "Set Services to Manual",
@@ -1,5 +1,7 @@
# Disable Storage Sense ---
title: "Disable Storage Sense"
description: ""
---
```json ```json
"WPFTweaksStorage": { "WPFTweaksStorage": {
"Content": "Disable Storage Sense", "Content": "Disable Storage Sense",
@@ -1,5 +1,7 @@
# Disable Telemetry ---
title: "Disable Telemetry"
description: ""
---
```json ```json
"WPFTweaksTelemetry": { "WPFTweaksTelemetry": {
"Content": "Disable Telemetry", "Content": "Disable Telemetry",
@@ -1,5 +1,7 @@
# Remove Ultimate Performance Profile ---
title: "Remove Ultimate Performance Profile"
description: ""
---
```powershell ```powershell
Function Invoke-WPFUltimatePerformance { Function Invoke-WPFUltimatePerformance {
<# <#
@@ -1,5 +1,7 @@
# Adobe Network Block ---
title: "Adobe Network Block"
description: ""
---
```json ```json
"WPFTweaksBlockAdobeNet": { "WPFTweaksBlockAdobeNet": {
"Content": "Adobe Network Block", "Content": "Adobe Network Block",
@@ -0,0 +1,50 @@
---
title: "Brave Debloat"
description: ""
---
```json
"WPFTweaksBraveDebloat": {
"Content": "Brave Debloat",
"Description": "Disables various annoyances like Brave Rewards,Leo AI,Crypto Wallet and VPN",
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a022_",
"registry": [
{
"Path":"HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
"Name": "BraveRewardsDisabled",
"Type": "DWord",
"Value": "1",
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
"Name": "BraveWalletDisabled",
"Type": "DWord",
"Value": "1",
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
"Name": "BraveVPNDisabled",
"Type": "DWord",
"Value": "1",
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
"Name": "BraveAIChatEnabled",
"Type": "DWord",
"Value": "0",
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
"Name": "BraveStatsPingEnabled",
"Type": "DWord",
"Value": "0",
"OriginalValue": "<RemoveEntry>"
}
],
```
@@ -1,5 +1,7 @@
# Remove ALL MS Store Apps - NOT RECOMMENDED ---
title: "Remove ALL MS Store Apps - NOT RECOMMENDED"
description: ""
---
```json ```json
"WPFTweaksDeBloat": { "WPFTweaksDeBloat": {
"Content": "Remove ALL MS Store Apps - NOT RECOMMENDED", "Content": "Remove ALL MS Store Apps - NOT RECOMMENDED",
@@ -1,5 +1,7 @@
# Disable Background Apps ---
title: "Disable Background Apps"
description: ""
---
```json ```json
"WPFTweaksDisableBGapps": { "WPFTweaksDisableBGapps": {
"Content": "Disable Background Apps", "Content": "Disable Background Apps",
@@ -1,5 +1,7 @@
# Disable Fullscreen Optimizations ---
title: "Disable Fullscreen Optimizations"
description: ""
---
```json ```json
"WPFTweaksDisableFSO": { "WPFTweaksDisableFSO": {
"Content": "Disable Fullscreen Optimizations", "Content": "Disable Fullscreen Optimizations",
@@ -1,5 +1,7 @@
# Disable IPv6 ---
title: "Disable IPv6"
description: ""
---
```json ```json
"WPFTweaksDisableIPv6": { "WPFTweaksDisableIPv6": {
"Content": "Disable IPv6", "Content": "Disable IPv6",
@@ -1,5 +1,7 @@
# Disable Notification Tray/Calendar ---
title: "Disable Notification Tray/Calendar"
description: ""
---
```json ```json
"WPFTweaksDisableNotifications": { "WPFTweaksDisableNotifications": {
"Content": "Disable Notification Tray/Calendar", "Content": "Disable Notification Tray/Calendar",
@@ -1,5 +1,7 @@
# Set Display for Performance ---
title: "Set Display for Performance"
description: ""
---
```json ```json
"WPFTweaksDisplay": { "WPFTweaksDisplay": {
"Content": "Set Display for Performance", "Content": "Set Display for Performance",
@@ -1,5 +1,7 @@
# Run OO Shutup 10 ---
title: "Run OO Shutup 10"
description: ""
---
```powershell ```powershell
function Invoke-WPFOOSU { function Invoke-WPFOOSU {
<# <#
@@ -1,5 +1,7 @@
# Remove Microsoft Edge ---
title: "Remove Microsoft Edge"
description: ""
---
# Json File # Json File
```json ```json
"WPFTweaksRemoveEdge": { "WPFTweaksRemoveEdge": {
@@ -1,5 +1,7 @@
# Remove Gallery from explorer ---
title: "Remove Gallery from explorer"
description: ""
---
```json ```json
"WPFTweaksRemoveGallery": { "WPFTweaksRemoveGallery": {
"Content": "Remove Gallery from explorer", "Content": "Remove Gallery from explorer",
@@ -1,5 +1,7 @@
# Remove Home from explorer ---
title: "Remove Home from explorer"
description: ""
---
```json ```json
"WPFTweaksRemoveHome": { "WPFTweaksRemoveHome": {
"Content": "Remove Home from Explorer", "Content": "Remove Home from Explorer",
@@ -1,3 +1,7 @@
---
title: "Remove OneDrive"
description: ""
---
# Remove OneDrive # Remove OneDrive
```json ```json
"WPFTweaksRemoveOneDrive": { "WPFTweaksRemoveOneDrive": {
@@ -1,5 +1,7 @@
# Set Classic Right-Click Menu ---
title: "Set Classic Right-Click Menu"
description: ""
---
```json ```json
"WPFTweaksRightClickMenu": { "WPFTweaksRightClickMenu": {
"Content": "Set Classic Right-Click Menu ", "Content": "Set Classic Right-Click Menu ",
@@ -1,5 +1,7 @@
# Disable Teredo ---
title: "Disable Teredo"
description: ""
---
```json ```json
"WPFTweaksTeredo": { "WPFTweaksTeredo": {
"Content": "Disable Teredo", "Content": "Disable Teredo",
@@ -1,5 +1,7 @@
# Set Time to UTC (Dual Boot) ---
title: "Set Time to UTC (Dual Boot)"
description: ""
---
```json ```json
"WPFTweaksUTC": { "WPFTweaksUTC": {
"Content": "Set Time to UTC (Dual Boot)", "Content": "Set Time to UTC (Dual Boot)",
+3 -5
View File
@@ -6,14 +6,12 @@
{{- if eq $pageTitle "" -}} {{- if eq $pageTitle "" -}}
{{- $pageTitle = .File.BaseFileName | humanize | title -}} {{- $pageTitle = .File.BaseFileName | humanize | title -}}
{{- end -}} {{- end -}}
{{- if findRE "^# .+" .RawContent -}} {{- $pageDesc := .Description -}}
{{- $pageTitle = replaceRE "(?s)^# (.+?)\\n.*" "$1" .RawContent -}} {{- $pages = $pages | append (dict "title" $pageTitle "description" $pageDesc "url" .RelPermalink) -}}
{{- end -}}
{{- $pages = $pages | append (dict "title" $pageTitle "url" .RelPermalink) -}}
{{- end -}} {{- end -}}
{{- end -}} {{- end -}}
<ul> <ul>
{{- range sort $pages "title" "asc" }} {{- range sort $pages "title" "asc" }}
<li><a href="{{ .url }}">{{ .title }}</a></li> <li><a href="{{ .url }}">{{ .title }}</a>{{ with .description }} - {{ . }}{{ end }}</li>
{{- end }} {{- end }}
</ul> </ul>