UniversalDataTool / udt-format

A simple universal data description format for datasets, tailored for interfacing with humans.
https://universaldatatool.com
MIT License
20 stars 14 forks source link

Data Entry Format doesn't render Markdown #9

Open Rmsharks4 opened 3 years ago

Rmsharks4 commented 3 years ago

Hi! Please try the following sample format (in the online app or in jupyter notebook) - it won't render even though the documentation says so.

{
  "name": "New data_entry Dataset",
  "interface": {
    "type": "data_entry",
    "surveyjs": {
      "questions": [
        {
          "type": "text",
          "name": "document_title",
          "title": "Title of Document"
        }
      ]
    }
  },
  "samples": [
    {
      "_id": "crap",
      "document": "i'm alive.",
    }
  ]
}