* Move article from github directory as a top-level product * Update article titles * Remove old -ing article titles * Use older format for this PR * Finish updating links for retitled articles * Remove sponsors topic * Add sponsors to index.md * Create folder for map topic for sponsors * Add integrating folder/category with super basic graphql article * Add get started category/folder * Update index.md * Add articles to category folders and update all the links and check it out locally 🙏 * Fix space * Fix set of broken links * Update link in resuable * Add the quickstart * Add USD * Add matching donations caveat * fix ci failures * Bringing back `-ing` to Sponsors titles, categories, & links (#18817) * Bringing back -ing * The one that got away * Apply @ethanpalm's input Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> * Apply product input * Apply suggestions from code review Co-authored-by: Emily Gould <4822039+emilyistoofunky@users.noreply.github.com> * Apply @emilyistoofunky's input * Sponsors landing page design (#18774) * Add sponsors to index.md as a top-level product * Revamp the GitHub Sponsors landing page with article links * remove merge tags * add community section * add sponsor descriptions * swap repo for user * remove prefix tag * lint * remove topic fix landing page * Tweak articles on landing page * Drop "account" * Add quickstart * Bigger, brighter, and shorter intro * Possibly too long of an intro? * fix quickstart link * add guides page * fix error for mismatch between title and filename * use link over guid * remove HTML from layout file (aligns to #18811) * use variable for section title * Add intro * Remove beta * Apply suggestions from code review Co-authored-by: Emily Gould <4822039+emilyistoofunky@users.noreply.github.com> * Apply suggestions from code review * Integrate article changes and remove old TOC * Fixing the commented out text to match other landing pages 👓 * Apply suggestions from code review Co-authored-by: Emily Gould <4822039+emilyistoofunky@users.noreply.github.com> * Switch up order of sidebar categories * Add new text to landing page button * Add topics and types * Add the underscore * Add some more topics * fix `type:` * Fix topics * plural ftw * hide learning paths when not defined * lint * Add quickstart to guides page * remove unused sidebar links * hide subsection title when learning tracks are not present * Apply @emilyistoofunky's topics input * Remove duplicated topics * Events ftw * typo * Remove obsolete topics for now * add some temporary duplicate topics * Resolve Linter error Co-authored-by: Rachael Sewell <rachmari@github.com> Co-authored-by: Emily Gould <4822039+emilyistoofunky@users.noreply.github.com> Co-authored-by: Rachael Sewell <rachmari@github.com> Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com> Co-authored-by: Emily Gould <4822039+emilyistoofunky@users.noreply.github.com>
97 lines
2.0 KiB
JavaScript
97 lines
2.0 KiB
JavaScript
// This is an AllowList of topics that are approved for use in `topics`
|
|
// frontmatter property. If a new topic is added to a Markdown file it must
|
|
// also be added to this file.
|
|
|
|
// The purpose of this list is to ensure we prevent typos and put a process in
|
|
// place to keep a curated list of topics. This list also serves as a list of
|
|
// available topics filters when using the search endpoint
|
|
// (see /contributing/search#how-to-search)
|
|
// If you'd like to add a new topic, consult the topic guidelines in the
|
|
// content model, add the entry to this list, and ensure you loop in the
|
|
// content and/or content strategy team for review.
|
|
|
|
module.exports = [
|
|
'2fa',
|
|
'Action development',
|
|
'Amazon ECS',
|
|
'Ant',
|
|
'Analytics',
|
|
'API',
|
|
'Azure App Service',
|
|
'Azure Pipelines',
|
|
'CD',
|
|
'CI',
|
|
'CircleCI',
|
|
'Contacting sponsors',
|
|
'Containers',
|
|
'Docker',
|
|
'Events',
|
|
'Fundamentals',
|
|
'GitLab',
|
|
'Google Kubernetes Engine',
|
|
'Gradle',
|
|
'GraphQL',
|
|
'Java',
|
|
'JavaScript',
|
|
'Jenkins',
|
|
'Maven',
|
|
'Migration',
|
|
'Node',
|
|
'Open Source',
|
|
'Organizations',
|
|
'Packaging',
|
|
'Powershell',
|
|
'Privacy',
|
|
'Project management',
|
|
'Publishing',
|
|
'Python',
|
|
'Ruby',
|
|
'Security',
|
|
'Sponsors payments',
|
|
'Sponsors profile',
|
|
'Travis CI',
|
|
'User account',
|
|
'Webhooks',
|
|
'Workflows',
|
|
'access management',
|
|
'accounts',
|
|
'api', // replace this with API
|
|
'billing',
|
|
'cli',
|
|
'codespaces',
|
|
'community',
|
|
'desktop',
|
|
'device verification',
|
|
'early access',
|
|
'enterprise',
|
|
'events', // replace this with Events
|
|
'github',
|
|
'github apps',
|
|
'github search',
|
|
'identity',
|
|
'issues',
|
|
'jobs',
|
|
'legal',
|
|
'marketplace',
|
|
'mobile',
|
|
'notifications',
|
|
'oauth apps',
|
|
'open source', // replace this with Open Source
|
|
'organizations', // replace this with Organization
|
|
'pages',
|
|
'permissions',
|
|
'policy',
|
|
'profile',
|
|
'profiles',
|
|
'projects',
|
|
'pull requests',
|
|
'repositories',
|
|
'security',
|
|
'ssh',
|
|
'sso',
|
|
'teams',
|
|
'usernames',
|
|
'webhooks', // replace this with Webhooks
|
|
'Xcode'
|
|
]
|