Click or drag to resize

MarkdownUtilitiesGetReferencedImageUrls Method

Gets a list of all referenced image URLs. We use this only in the serialization code to serialize only those local images which are referenced in the markdown.

Namespace: Altaxo.Text
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static List<(string Url, int urlSpanStart, int urlSpanEnd)> GetReferencedImageUrls(
	MarkdownDocument markdownDocument
)

Parameters

markdownDocument  MarkdownDocument
The markdown document to inspect.

Return Value

ListValueTupleString, Int32, Int32
A new list containing all image URLs together with the beginning and end of the URL span.
See Also