MCPcopy
hub / github.com/russross/blackfriday / isspace

Function isspace

markdown.go:815–817  ·  view source on GitHub ↗

Test if a character is a whitespace character.

(c byte)

Source from the content-addressed store, hash-verified

813
814// Test if a character is a whitespace character.
815func isspace(c byte) bool {
816 return ishorizontalspace(c) || isverticalspace(c)
817}
818
819// Test if a character is a horizontal whitespace character.
820func ishorizontalspace(c byte) bool {

Callers 11

skipSpaceFunction · 0.85
wordBoundaryFunction · 0.85
smartQuoteHelperFunction · 0.85
emphasisFunction · 0.85
linkFunction · 0.85
isEndOfLinkFunction · 0.85
tagLengthFunction · 0.85
helperEmphasisFunction · 0.85
helperDoubleEmphasisFunction · 0.85
helperTripleEmphasisFunction · 0.85
isFenceLineFunction · 0.85

Calls 2

ishorizontalspaceFunction · 0.85
isverticalspaceFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…