Skip to content

Commit

Permalink
Updates contributing script sample docs
Browse files Browse the repository at this point in the history
  • Loading branch information
milanholemans authored and Adam-it committed Oct 28, 2023
1 parent 2c09ab4 commit ef9afb2
Showing 1 changed file with 13 additions and 5 deletions.
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

0 comments on commit ef9afb2

Please sign in to comment.