1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-09 01:17:06 +02:00

docs: place emoji before their following headings

This commit is contained in:
Thomas Heartman 2022-01-14 08:19:34 +01:00 committed by Thomas Heartman
parent bf7231bdab
commit 286edba290
2 changed files with 39 additions and 33 deletions

View File

@ -1,6 +1,6 @@
--- ---
id: index id: index
title: About the docs 📚 title: 📚 About the docs
slug: / slug: /
sidebar_position: 1 sidebar_position: 1
--- ---

View File

@ -13,16 +13,22 @@ module.exports = {
documentation: [ documentation: [
'user_guide/index', 'user_guide/index',
{ {
'First steps 👶': [ '👶 First steps': [
'user_guide/unleash_overview', 'user_guide/unleash_overview',
'user_guide/important-concepts', 'user_guide/important-concepts',
'user_guide/quickstart', 'user_guide/quickstart',
], ],
}, },
{ {
label: 'How-to guides 🪜', label: '🛠 How-to guides',
type: 'category', type: 'category',
collapsible: true, collapsible: true,
link: {
type: 'generated-index',
title: 'How-to guides',
description: 'Step-by-step recipes for you to follow',
slug: '/how-to',
},
items: [ items: [
'how-to/how-to-add-strategy-constraints', 'how-to/how-to-add-strategy-constraints',
'how-to/how-to-define-custom-context-fields', 'how-to/how-to-define-custom-context-fields',
@ -39,20 +45,28 @@ module.exports = {
], ],
}, },
{ {
label: 'Reference documentation 📜', label: '📖 Reference documentation',
type: 'category', type: 'category',
collapsible: false, collapsible: true,
items: [ items: [
{ {
type: 'category', 'Unleash concepts': [
link: { type: 'doc', id: 'addons/index' }, 'user_guide/activation_strategy',
items: [ 'advanced/archived_toggles',
'addons/webhook', 'advanced/audit_log',
'addons/slack', 'advanced/custom_activation_strategy',
'addons/teams', 'user_guide/environments',
'addons/datadog', 'advanced/feature_toggle_types',
'advanced/toggle_variants',
'user_guide/projects',
'user_guide/rbac',
'advanced/enterprise-authentication',
'advanced/stickiness',
'advanced/strategy_constraints',
'advanced/tags',
'user_guide/technical_debt',
'user_guide/unleash_context',
], ],
label: 'Addons',
}, },
{ {
type: 'category', type: 'category',
@ -93,7 +107,6 @@ module.exports = {
'sdks/unleash-proxy', 'sdks/unleash-proxy',
{ {
type: 'category', type: 'category',
collapsible: false,
label: 'Server-side SDKs', label: 'Server-side SDKs',
items: [ items: [
'sdks/go_sdk', 'sdks/go_sdk',
@ -112,7 +125,6 @@ module.exports = {
}, },
{ {
type: 'category', type: 'category',
collapsible: false,
label: 'Client-side SDKs', label: 'Client-side SDKs',
items: [ items: [
'sdks/android_proxy_sdk', 'sdks/android_proxy_sdk',
@ -127,23 +139,6 @@ module.exports = {
href: '/sdks#community-sdks', href: '/sdks#community-sdks',
}, },
], ],
'Unleash concepts': [
'user_guide/activation_strategy',
'advanced/archived_toggles',
'advanced/audit_log',
'advanced/custom_activation_strategy',
'user_guide/environments',
'advanced/feature_toggle_types',
'advanced/toggle_variants',
'user_guide/projects',
'user_guide/rbac',
'advanced/enterprise-authentication',
'advanced/stickiness',
'advanced/strategy_constraints',
'advanced/tags',
'user_guide/technical_debt',
'user_guide/unleash_context',
],
'Deploy and manage Unleash': [ 'Deploy and manage Unleash': [
'deploy/getting_started', 'deploy/getting_started',
'deploy/configuring_unleash', 'deploy/configuring_unleash',
@ -156,6 +151,17 @@ module.exports = {
'deploy/import_export', 'deploy/import_export',
], ],
}, },
{
type: 'category',
link: { type: 'doc', id: 'addons/index' },
items: [
'addons/webhook',
'addons/slack',
'addons/teams',
'addons/datadog',
],
label: 'Addons',
},
{ {
type: 'category', type: 'category',
label: 'Integrations', label: 'Integrations',
@ -173,7 +179,7 @@ module.exports = {
], ],
}, },
{ {
'Topic guides 🤓': ['topics/a-b-testing'], '🤓 Topic guides': ['topics/a-b-testing'],
}, },
], ],
}; };