Monorepo for Tangled tangled.org
3

Configure Feed

Select the types of activity you want to include in your feed.

at icy/lqyotq 800 B View raw
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.markup.markdown", 4 "defs": { 5 "main": { 6 "type": "object", 7 "required": ["text"], 8 "description": "Tangled Flavored Markdown format text", 9 "properties": { 10 "text": { 11 "type": "string", 12 "description": "Final post-processed markdown content that will be rendered" 13 }, 14 "original": { 15 "type": "string", 16 "description": "Original Markdown before post-processing. Used to restore original input on edit." 17 }, 18 "blobs": { 19 "type": "array", 20 "items": { 21 "type": "blob", 22 "accept": ["image/*"], 23 "maxSize": 1000000 24 }, 25 "description": "list of blobs referenced in markdown" 26 } 27 } 28 } 29 } 30}