We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9ba10 commit 04d97d2Copy full SHA for 04d97d2
lib/src/util.rs
@@ -73,6 +73,7 @@ pub fn read_url(file: &str) -> Result<OxigraphGraph> {
73
let content_type = content_type.and_then(|ct| ct.to_str().ok());
74
let content_type = content_type.and_then(|ext| match ext {
75
"application/x-turtle" => Some(RdfFormat::Turtle),
76
+ "text/turtle" => Some(RdfFormat::Turtle),
77
"application/rdf+xml" => Some(RdfFormat::RdfXml),
78
"text/rdf+n3" => Some(RdfFormat::NTriples),
79
_ => {
0 commit comments