Skip to content

Commit

Permalink
autocommit
Browse files Browse the repository at this point in the history
  • Loading branch information
nbittich committed Dec 14, 2024
1 parent 2d89b6f commit 37a0867
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions lib-rdfa/examples/other/example0026.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<div vocab="http://schema.org/" typeof="Person">
<a property="image" href="http://manu.sporny.org/images/manu.png">
<span property="name">Manu Sporny</span></a
>,
<span property="jobTitle">Founder/CEO</span>
<div>Phone: <span property="telephone">(540) 961-4469</span></div>
<div>
E-mail:
<a property="email" href="mailto:msporny@digitalbazaar.com"
>msporny@digitalbazaar.com</a
>
</div>
<div>
Links: <a property="url" href="http://manu.sporny.org/">Manu's homepage</a>
</div>
</div>
15 changes: 15 additions & 0 deletions lib-rdfa/examples/other/example0026.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

@prefix rdfa: <http://www.w3.org/ns/rdfa#> .
@prefix schema: <http://schema.org/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://rdfa.info/test-suite/test-cases/rdfa1.1/html5/>
rdfa:usesVocabulary schema: .
_:1
rdf:type schema:Person;
schema:image <http://manu.sporny.org/images/manu.png>;
schema:name "Manu Sporny";
schema:jobTitle "Founder/CEO";
schema:telephone "(540) 961-4469";
schema:email <mailto:msporny@digitalbazaar.com>;
schema:url <http://manu.sporny.org/> .
1 change: 1 addition & 0 deletions lib-rdfa/src/tests/other.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const INPUT_OUTPUT_DIR: &str = "examples/other";
#[test_case("example0023" ; "From rdfa.info/play places : other_0023 ")]
#[test_case("example0024" ; "From rdfa.info/play event : other_0024 ")]
#[test_case("example0025" ; "From rdfa.info/play social : other_0025 ")]
#[test_case("example0026" ; "From rdfa.info/play person : other_0026 ")]
#[serial]
fn test(test_name: &str) {
cmp_files(
Expand Down

0 comments on commit 37a0867

Please sign in to comment.