Skip to content

Commit 072008c

Browse files
committed
Test with AI butchered doc
1 parent 3da418d commit 072008c

32 files changed

+750
-2
lines changed

docs/pingcastle/3.3/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# PingCastle
2+
3+
The home of PingCastle Documentation. Use the sidebar to pick and search the documentation.

docs/pingcastle/3.4/configuration.md

Lines changed: 698 additions & 0 deletions
Large diffs are not rendered by default.

docs/pingcastle/3.4/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# PingCastle

scripts/start-wrapper.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const [productName, version] = input.includes('/') ? input.split('/') : [input,
2727
const versionlessProducts = [
2828
'1secure',
2929
'endpointpolicymanager',
30-
'pingcastle',
3130
'platgovnetsuite',
3231
'platgovsalesforce',
3332
'platgovnetsuiteflashlight',

sidebars/pingcastle/3.4.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// @ts-check
2+
3+
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
4+
// ./sidebars/yourproduct/3.5.js
5+
module.exports = {
6+
docs: [
7+
'index',
8+
{
9+
type: 'category',
10+
label: 'Configuration',
11+
items: [
12+
{
13+
type: 'category',
14+
label: 'Getting Started',
15+
items: [
16+
'configuration', // This links to your new configuration.mdx file
17+
],
18+
},
19+
],
20+
},
21+
],
22+
};
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// src/components/PingCastleEditionTabs.js
2+
import React from 'react';
3+
import Tabs from '@theme/Tabs';
4+
import TabItem from '@theme/TabItem';
5+
6+
export default function PingCastleEditionTabs({ children }) {
7+
return (
8+
<Tabs
9+
groupId="editions"
10+
defaultValue="enterprise"
11+
values={[
12+
{ label: 'Basic/Standard Edition', value: 'basic' },
13+
{ label: 'Pro Edition', value: 'pro' },
14+
{ label: 'Enterprise Edition', value: 'enterprise' },
15+
]}
16+
>
17+
{children}
18+
</Tabs>
19+
);
20+
}

src/config/products.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,14 @@ export const PRODUCTS = [
364364
isLatest: true,
365365
sidebarFile: './sidebars/pingcastle/3.3.js',
366366
},
367+
{
368+
version: '3.4',
369+
label: '3.4',
370+
isLatest: true,
371+
sidebarFile: './sidebars/pingcastle/3.4.js',
372+
},
367373
],
368-
defaultVersion: '3.3',
374+
defaultVersion: '3.4',
369375
},
370376
{
371377
id: 'platgovnetsuite',
Loading
Loading
Loading

0 commit comments

Comments
 (0)