Render and browse records as Markdown documents, together with inbound and outbound links

Render and browse records as Markdown documents, together with inbound and outbound links

Data in DFRNT can be browsed like a wiki, complete with inbound and outbound links so that data can be navigated freely and for exploration with Markdown for rich text. 

Document contents can be viewed by opening a record through the canvas, or by browsing for records through the Data Model.

The Markdown trait, also known as subdocument or data structure, will be rendered as markdown-formatted rich text, useful for making nodes browseable and contain lengthier texts.

To use the Markdown built in trait, create a a mandatory or optional string property called markdown on a document and link it to the Markdown trait. Pictures can be linked but not yet uploaded into DFRNT, but may be possible to use through data: elements for the brave.

By using Markdown documents and use markdown links, documents can be made browseable like a Wiki, using relative links such as ../Type/documentId, with the ids that can be copied using the clipboard icon in the user interface. Super neat!

Trait definition for the Markdown trait (add a trait, paste below into the definition tab):

{
"@type": "Class",
"@key": {
"@type": "Random"
},
"@id": "Markdown",
"@inherits": [],
"@subdocument": [],
"markdown": "xsd:string"
}

 

    • Related Articles

    • Overview of DFRNT data modelling

      The data model in DFRNT data products follows the TerminusDB graph metamodel 1:1, and enables easy data modelling and advanced visualisation The data modelling capabilities of DFRNT.com involves five categories of data structures: Records, ...
    • The DFRNT Data Product Builder

      DFRNT is a data product builder with knowledge graph visualisation, modelling and management, with version control, API access and a datalog engine. With DFRNT data products, digital architects, cybersecurity professionals, data practitioners and ...
    • Custom class metadata configuration

      Colours, link directions, class labels, the property display order can be altered by setting custom class metadata. DFRNT provides a special section called "metadata" to define custom behaviours for types and traits. Although these behaviours cannot ...
    • How can I learn more about DFRNT

      Learning about DFRNT is closely connected to leveraging the open source TerminusDB data product engine, for which DFRNT is a UI and hosting provider. DFRNT is a user interface and hosting provider for the open source TerminusDB data product ...
    • How can I import data from Excel?

      You can import data from Excel using the "Add many records" function in a type view, with tabular data. To help you structure array data in Excel, here is a sample function to create a JSON list from a new-line-separated cell. Swap the semicolons, ...