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

Function isverticalspace

markdown.go:825–827  ·  view source on GitHub ↗

Test if a character is a vertical character.

(c byte)

Source from the content-addressed store, hash-verified

823
824// Test if a character is a vertical character.
825func isverticalspace(c byte) bool {
826 return c == '\n' || c == '\r' || c == '\f' || c == '\v'
827}
828
829// Test if a character is letter.
830func isletter(c byte) bool {

Callers 2

isspaceFunction · 0.85
isFenceLineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…