Markdown
#markdown
#table
#gfm
#pipe
Markdown Table Row
Matches a Markdown GFM table row — cells separated by pipe | characters.
✓ GFM table parsers✓ Table data extraction✓ Documentation tools
✓ Valid Examples
- | Name | Age | City |
- | --- | --- | --- |
- | Alice | 30 | London |
✗ Invalid Examples
- Not a table
- | single cell
- no pipes here
Usage & Integration
Validate Markdown Table Row natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('markdown-table-row', '...');Python
from regexto_validators import validate
validate("markdown-table-row", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("markdown-table-row", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('markdown-table-row', '...');Rust
use regexto_validators::validate;
let is_valid = validate("markdown-table-row", "...").unwrap();