Skip to content

Commit

Permalink
Correct invisible content (disallowed-html-tag)
Browse files Browse the repository at this point in the history
When the build interprets something like "<GUID>" as an HTML tag that's disallowed, it does not include that content in the rendered page. One way to solve that is to add backslashes before the angle brackets.
  • Loading branch information
garycentric committed Dec 4, 2024
1 parent f89afbc commit f98c998
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit f98c998

Please sign in to comment.