Sync your Obsidian vault to an atproto PDS community.obsidian.md/plugins/pds-sync
0

Configure Feed

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

1{ 2 "id": "at.markpub.text", 3 "defs": { 4 "main": { 5 "type": "object", 6 "required": [ 7 "markdown" 8 ], 9 "properties": { 10 "facets": { 11 "type": "array", 12 "items": { 13 "refs": [], 14 "type": "union", 15 "closed": false 16 }, 17 "description": "Facets here represent rendered versions of Markdown strings. A bold Markdown string `**bold**` might be represented by a richtext facet of #bold, in which case it is suggested to be presented without the Markdown markup as `<strong>bold</strong>`. Facets select their character ranges based on position in the Markdown text but should be rendered without the related characters. For example: `### Header` will be selected using a character range that includes the hashes like (0,9) but will be rendered without the hashes like `<h3>Header</h3>`. It is recommended that processors to not transform in-place for this reason. The goal of having an open union for facets is that constructing systems may choose to use the facets they prefer from across the ecosystem, either here or in other places like `pub.leaflet.richtext.facet`" 18 }, 19 "lenses": { 20 "type": "array", 21 "items": { 22 "refs": [], 23 "type": "union", 24 "closed": false 25 }, 26 "description": "Lenses are lexicons that define translatable facets for rendering layers with limited facets. `pub.leaflet.richtext.facet#bold` and `at.markpub.facets.baseFormatting#strong` expect the same output. A lens would then include a union with both those facets and a renderer that understands either of them could translate between the two." 27 }, 28 "markdown": { 29 "type": "string", 30 "description": "The raw text in markdown. May include anything that is valid markdown syntax for your flavor. Make sure it is properly escaped if necessary." 31 }, 32 "textBlob": { 33 "type": "blob", 34 "accept": [ 35 "text/*" 36 ], 37 "maxSize": 1000000, 38 "description": "Text may be blob-ified as raw Markdown and stored on a PDS, pass it here by reference. If you use this property it is assumed that it overrides the \"rawMarkdown\" property. It is a PDS address for a markdown text file. You still must provide some value, even if it is a preview for \"rawMarkdown\" in this field." 39 } 40 } 41 } 42 }, 43 "$type": "com.atproto.lexicon.schema", 44 "lexicon": 1 45}