Skip to content

Latest commit

 

History

History
107 lines (78 loc) · 3.36 KB

Markdown.md

File metadata and controls

107 lines (78 loc) · 3.36 KB

Markdown

Markdown is a lightweight markup language for writing formatted documents inspired to conventions of web posting. We can interpret a Markdown document as a sequence of blocks (e.g. paragraphs, lists, headings, code blocks). Some blocks (e.g. list items) contain other blocks, whereas others contain inline contents (e.g. links, images etc.). In SPARQL Anything, a document is represented as a list of typed containers. Where the type denotes the kind of block (e.g. heading, paragraph, emphasised text, link, image etc.); lists are needed for specifying the sequence of the blocks. Additional attributes such as the depth of the header or the type of list (bullets, numbers, etc...) can be also supported, relying on the key-value structure.

SPARQL Anything relies on the CommonMark Java implementation of Commons Markdown.

Extensions

SPARQL Anything selects this transformer for the following file extensions:

  • md

Media types

SPARQL Anything selects this transformer for the following media types:

  • text/markdown
  • text/x-markdown

Default implementation

Default Transformation

Data

# Title
The following list of issues:

- first issue
- second issue

---
Footer paragraph.

Located at https://sparql-anything.cc/examples/simple.md

Query

CONSTRUCT 
  { 
    ?s ?p ?o .
  }
WHERE
  { SERVICE <x-sparql-anything:location=https://sparql-anything.cc/examples/simple.md>
      { GRAPH ?g
          { ?s  ?p  ?o }
      }
  }

Facade-X RDF

PREFIX dc:     <http://purl.org/dc/elements/1.1/>
PREFIX eg:     <http://www.example.org/>
PREFIX fx:     <http://sparql.xyz/facade-x/ns/>
PREFIX ja:     <http://jena.hpl.hp.com/2005/11/Assembler#>
PREFIX owl:    <http://www.w3.org/2002/07/owl#>
PREFIX rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs:   <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rss:    <http://purl.org/rss/1.0/>
PREFIX vcard:  <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX whatwg: <https://html.spec.whatwg.org/#>
PREFIX xhtml:  <http://www.w3.org/1999/xhtml#>
PREFIX xsd:    <http://www.w3.org/2001/XMLSchema#>
PREFIX xyz:    <http://sparql.xyz/facade-x/data/>

[ rdf:type  xyz:Document , fx:root;
  rdf:_1    [ rdf:type   xyz:Heading;
              rdf:_1     "Title";
              xyz:level  "1"^^xsd:int
            ];
  rdf:_2    [ rdf:type  xyz:Paragraph;
              rdf:_1    "The following list of issues:"
            ];
  rdf:_3    [ rdf:type  xyz:BulletList;
              rdf:_1    [ rdf:type  xyz:ListItem;
                          rdf:_1    [ rdf:type  xyz:Paragraph;
                                      rdf:_1    "first issue"
                                    ]
                        ];
              rdf:_2    [ rdf:type  xyz:ListItem;
                          rdf:_1    [ rdf:type  xyz:Paragraph;
                                      rdf:_1    "second issue"
                                    ]
                        ]
            ];
  rdf:_4    [ rdf:type  xyz:ThematicBreak ];
  rdf:_5    [ rdf:type  xyz:Paragraph;
              rdf:_1    "Footer paragraph."
            ]
] .