Skip to contents

Reports which Screaming Frog link types count as edges in the link graph. Only true hyperlinks build the graph; resource references such as images, stylesheets, and scripts are excluded. The eligible set is sf_contract()$graph_eligible_types.

Usage

sf_graph_eligible(type)

Arguments

type

A vector (typically character) of Screaming Frog link types, e.g. "Hyperlink" or "Image". Whitespace is trimmed.

Value

A logical vector the same length as type, TRUE where the type is graph-eligible.

Examples

sf_graph_eligible(c("Hyperlink", "Image", "Stylesheet"))
#> [1]  TRUE FALSE FALSE