mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-05 06:00:31 +00:00
Fixing TOC
This commit is contained in:
parent
84ff635d2e
commit
60067b4829
28
API.md
28
API.md
@ -5,14 +5,14 @@
|
|||||||
<!-- toc -->
|
<!-- toc -->
|
||||||
|
|
||||||
- [Actors](#actors)
|
- [Actors](#actors)
|
||||||
* [User / [Person](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person)](#user--personhttpswwww3orgtractivitystreams-vocabulary%23dfn-person)
|
* [User / Person](#user--person)
|
||||||
* [Community / [Group](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group)](#community--grouphttpswwww3orgtractivitystreams-vocabulary%23dfn-group)
|
* [Community / Group](#community--group)
|
||||||
- [Objects](#objects)
|
- [Objects](#objects)
|
||||||
* [Post / [Page](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page)](#post--pagehttpswwww3orgtractivitystreams-vocabulary%23dfn-page)
|
* [Post / Page](#post--page)
|
||||||
* [Post Listings / [Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)](#post-listings--ordered-collectionpagehttpswwww3orgtractivitystreams-vocabulary%23dfn-orderedcollectionpage)
|
* [Post Listings / Ordered CollectionPage](#post-listings--ordered-collectionpage)
|
||||||
* [Comment / [Note](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note)](#comment--notehttpswwww3orgtractivitystreams-vocabulary%23dfn-note)
|
* [Comment / Note](#comment--note)
|
||||||
* [Comment Listings / [Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)](#comment-listings--ordered-collectionpagehttpswwww3orgtractivitystreams-vocabulary%23dfn-orderedcollectionpage)
|
* [Comment Listings / Ordered CollectionPage](#comment-listings--ordered-collectionpage)
|
||||||
* [Deleted thing / [Tombstone](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone)](#deleted-thing--tombstonehttpswwww3orgtractivitystreams-vocabulary%23dfn-tombstone)
|
* [Deleted thing / Tombstone](#deleted-thing--tombstone)
|
||||||
- [Actions](#actions)
|
- [Actions](#actions)
|
||||||
* [Comments](#comments)
|
* [Comments](#comments)
|
||||||
+ [Create](#create)
|
+ [Create](#create)
|
||||||
@ -38,7 +38,7 @@
|
|||||||
;
|
;
|
||||||
## Actors
|
## Actors
|
||||||
|
|
||||||
### User / [Person](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person)
|
### [User / Person](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person)
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"@context": "https://www.w3.org/ns/activitystreams",
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||||||
@ -57,7 +57,7 @@
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Community / [Group](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group)
|
### [Community / Group](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group)
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
@ -76,7 +76,7 @@
|
|||||||
|
|
||||||
## Objects
|
## Objects
|
||||||
|
|
||||||
### Post / [Page](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page)
|
### [Post / Page](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page)
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"@context": "https://www.w3.org/ns/activitystreams",
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||||||
@ -90,7 +90,7 @@
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Post Listings / [Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)
|
### [Post Listings / Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
@ -103,7 +103,7 @@
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Comment / [Note](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note)
|
### [Comment / Note](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note)
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"@context": "https://www.w3.org/ns/activitystreams",
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||||||
@ -118,7 +118,7 @@
|
|||||||
"replies" // TODO, not sure if these objects should embed all replies in them or not.
|
"replies" // TODO, not sure if these objects should embed all replies in them or not.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
### Comment Listings / [Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)
|
### [Comment Listings / Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
@ -130,7 +130,7 @@
|
|||||||
"orderedItems": [Comments]
|
"orderedItems": [Comments]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
### Deleted thing / [Tombstone](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone)
|
### [Deleted thing / Tombstone](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone)
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"type": "Tombstone",
|
"type": "Tombstone",
|
||||||
|
Loading…
Reference in New Issue
Block a user