Skip to content

Commit 1beb518

Browse files
author
James Brundage
committed
docs: Adding README
1 parent 2a64900 commit 1beb518

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,39 @@
11
# oEmbed
2+
23
Open Embedding with PowerShell
4+
5+
6+
## The oEmbed Standard
7+
8+
There's lots of content on the internet. How do we embed it?
9+
10+
11+
Over the years, most large sites seem to have agreeded on a standard or two.
12+
13+
[oEmbed](https://oEmbed.com/) is one such standard.
14+
15+
## The oEmbed module
16+
17+
This is a PowerShell module for oEmbed.
18+
19+
It lets you get open embeddings for any url that supports the [oEmbed standard](https://oEmbed.com/)
20+
21+
It contains a single command: `Get-Ombed`
22+
23+
This command is aliased to `oEmbed`
24+
25+
~~~PowerShell
26+
oEmbed "https://youtu.be/nHlJODYBLKs?si=XmWPX6ulPDlaEzO0"
27+
~~~
28+
29+
We can also list all the providers:
30+
31+
~~~PowerShell
32+
oEmbed -ProviderList
33+
~~~
34+
35+
Or get them by wildcard:
36+
37+
~~~PowerShell
38+
oEmbed -ProviderName *tube*
39+
~~~

0 commit comments

Comments
 (0)