Skip to content

Commit

Permalink
be more flexible with labeled bnode extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
nbittich committed Nov 23, 2024
1 parent 7e2dea1 commit 37f41b4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/triple_common_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,13 @@ pub(crate) mod triple {
let parse_label = delimited(
tag(BLANK_NODE_LABEL),
take_while(|s: char| {
!s.is_whitespace() && s != '.' && s != ';' && s != '<' && s != '(' && s != '['
!s.is_whitespace()
&& s != '.'
&& s != ';'
&& s != '<'
&& s != '('
&& s != '['
&& s != '"'
}),
space0,
);
Expand Down

0 comments on commit 37f41b4

Please sign in to comment.