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

Correct invisible content (disallowed-html-tag) #771

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ Possible results for this cmdlet are:
Result | Reason
--- | ---
Warning : We couldn't find the user@contoso.com. Check for typos and try again. | Invalid input for -User parameter.
We successfully signed out <user> from all devices. | Successful instantaneous revocation.
It can take up to an hour to sign out <user> from all devices. | Successful non-instantaneous revocation.
Sorry, something went wrong and we couldn't sign out <user> from any device. | The cmdlet did not successfully execute.
We successfully signed out \<user\> from all devices. | Successful instantaneous revocation.
It can take up to an hour to sign out \<user\> from all devices. | Successful non-instantaneous revocation.
Sorry, something went wrong and we couldn't sign out \<user\> from any device. | The cmdlet did not successfully execute.
The cmdlet will be available in the future, but it isn't ready for use in your organization yet. | The cmdlet has been disabled for the tenant.

## EXAMPLES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Accept wildcard characters: False

### -FileContainerName

The optional name of the Azure Blob Storage container that will be created if it does not currently exist. It will hold the uploaded package content files. The value must be in lower case and conform to Azure's container naming rules. If this not supplied a name will be generated using the format <GUID>-files.
The optional name of the Azure Blob Storage container that will be created if it does not currently exist. It will hold the uploaded package content files. The value must be in lower case and conform to Azure's container naming rules. If this not supplied a name will be generated using the format \<GUID\>-files.

```yaml
Type: String
Expand Down Expand Up @@ -274,7 +274,7 @@ Accept wildcard characters: False

### -PackageContainerName

The optional name of the Azure Blob Storage container that will be created if it does not currently exist. It will hold the uploaded package metadata files. The value must be in lower case and conform to Azure's container naming rules. If this not supplied a name will be generated using the format <GUID>-package.
The optional name of the Azure Blob Storage container that will be created if it does not currently exist. It will hold the uploaded package metadata files. The value must be in lower case and conform to Azure's container naming rules. If this not supplied a name will be generated using the format \<GUID\>-package.

```yaml
Type: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Disables the hub site feature on a site so that it is no longer a hub site. Asso
Unregister-SPOHubSite -Identity <guid>
```

This example removes a site from the hub site list based on unique hub identifier (<guid>).
This example removes a site from the hub site list based on unique hub identifier (\<guid\>).

### Example 2

Expand Down
Loading