Skip to content
Prev Previous commit
Next Next commit
feat: Get-JsonLD ( Fixes #2 )
Adding examples
  • Loading branch information
James Brundage committed Mar 16, 2025
commit 3798f98e1283ca4671965a0557180cc96091e980
2 changes: 2 additions & 0 deletions Commands/Get-JsonLD.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ function Get-JsonLD {

This is a format used by many websites to provide structured data about their content.
.EXAMPLE
# Want to get information about a movie? Linked Data to the rescue!
Get-JsonLD -Url https://www.imdb.com/title/tt0211915/
#>
[Alias('jsonLD','json-ld')]
param(
# The URL that may contain JSON-LD data
[Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
Expand Down
Loading