pub fn link<'a, E>(
input: &'a str,
) -> Result<Vec<Option<LinkData<'a>>>, LinkParseError>
👎Deprecated since 0.4.0: please use
link_strict
insteadExpand description
Same as link_strict
, but with the original name. When lenient parsing was introduced,
to avoid ambiguity the function was renamed. To avoid breakages, the function still exists,
but instead use link_strict
.