Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates contributing script sample docs #5577

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions docs/docs/contribute/script-sample/new-script-sample.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,23 +93,31 @@ tags:
- libraries
---

# Cool sample to add multiple lists in a sites
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# Cool sample to add multiple lists in a site

Author: [author name](https://link)

Short description of the sample functionality.

=== "PowerShell"
<Tabs>
<TabItem value="PowerShell">

```powershell
# powershell script
# Put your PowerShell script here
```

=== "Bash"
</TabItem>
<TabItem value="Bash">

```bash
# CLI for Microsoft 365 script
# Put your Bash script here
```

</TabItem>
</Tabs>
```

## Next step
Expand Down