From d5171109f5fbad2af70d96b8f351963a03c33693 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Mon, 12 Oct 2020 12:09:49 -0700 Subject: [PATCH] Add anchor to children / item in exporter docs --- plexpy/exporter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexpy/exporter.py b/plexpy/exporter.py index 666ce0cd..d4835b8f 100644 --- a/plexpy/exporter.py +++ b/plexpy/exporter.py @@ -2190,10 +2190,10 @@ def build_export_docs(): section = section_head.format(anchor=media_type, section=section_title) + '\n\n'.join(details) if media_type == 'collection': - section += '\n\n* **Note:** `children` can be [Movies](#movie) or [Shows](#show) ' \ + section += '\n\n* **Note:** `children` can be [Movies](#movie) or [Shows](#show) ' \ 'depending on the collection.' elif media_type == 'playlist': - section += '\n\n* **Note:** `items` can be [Movies](#movie), [Episodes](#episode), ' \ + section += '\n\n* **Note:** `items` can be [Movies](#movie), [Episodes](#episode), ' \ '[Tracks](#track), or [Photos](#photo) depending on the playlist.' sections.append(section)