InlineLinks

The InlineLinks() method returns every inline (non-reference) link from the document.

Overloads

InlineLinks()
Returns every inline (non-reference) link from the document.

Returns every inline (non-reference) link from the document.

[ParsedDocument] InlineLinks()

Parameters

None.

Returns

The list of links from the document whose Kind is TextInline or ImageInline.

Exceptions

None.

Examples

The following example demonstrates retrieving the list of inline links from a parsed document.

$Doc = Get-Document ./README.md
$Doc.InlineLinks()