]> Untitled Git - lemmy.git/commitdiff
Fixing TOC
authorDessalines <tyhou13@gmx.com>
Mon, 25 Feb 2019 20:54:40 +0000 (12:54 -0800)
committerDessalines <tyhou13@gmx.com>
Mon, 25 Feb 2019 20:54:40 +0000 (12:54 -0800)
API.md

diff --git a/API.md b/API.md
index 5c0658d7f3536fe78e76031eb0d71ec7af841155..63b7e0f05738360017d8d7fe59a5bfadacf990e7 100644 (file)
--- a/API.md
+++ b/API.md
@@ -5,14 +5,14 @@
 <!-- toc -->
 
 - [Actors](#actors)
-  * [User / [Person](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-person)](#user--personhttpswwww3orgtractivitystreams-vocabulary%23dfn-person)
-  * [Community / [Group](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-group)](#community--grouphttpswwww3orgtractivitystreams-vocabulary%23dfn-group)
+  * [User / Person](#user--person)
+  * [Community / Group](#community--group)
 - [Objects](#objects)
-  * [Post / [Page](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-page)](#post--pagehttpswwww3orgtractivitystreams-vocabulary%23dfn-page)
-  * [Post Listings / [Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)](#post-listings--ordered-collectionpagehttpswwww3orgtractivitystreams-vocabulary%23dfn-orderedcollectionpage)
-  * [Comment / [Note](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-note)](#comment--notehttpswwww3orgtractivitystreams-vocabulary%23dfn-note)
-  * [Comment Listings / [Ordered CollectionPage](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage)](#comment-listings--ordered-collectionpagehttpswwww3orgtractivitystreams-vocabulary%23dfn-orderedcollectionpage)
-  * [Deleted thing / [Tombstone](https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tombstone)](#deleted-thing--tombstonehttpswwww3orgtractivitystreams-vocabulary%23dfn-tombstone)
+  * [Post / Page](#post--page)
+  * [Post Listings / Ordered CollectionPage](#post-listings--ordered-collectionpage)
+  * [Comment / Note](#comment--note)
+  * [Comment Listings / Ordered CollectionPage](#comment-listings--ordered-collectionpage)
+  * [Deleted thing / Tombstone](#deleted-thing--tombstone)
 - [Actions](#actions)
   * [Comments](#comments)
     + [Create](#create)
@@ -38,7 +38,7 @@
 ;
 ## 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",
@@ -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
 
-### 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",
@@ -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)
 
 ```
 {
 }
 ```
 
-### 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",
   "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)
 
 ```
 {
   "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",