diff --git a/README.md b/README.md index d86f4cd..7a4db2c 100644 --- a/README.md +++ b/README.md @@ -2,17 +2,6 @@ description: >- Welcome to TRMNL. Here you can learn how to build plugins, connect your own hardware, and more. -layout: - title: - visible: true - description: - visible: true - tableOfContents: - visible: true - outline: - visible: true - pagination: - visible: false --- # 👋 Overview diff --git a/SUMMARY.md b/SUMMARY.md index 0837ae3..d723b46 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -8,7 +8,7 @@ * [Screen Templating](private-plugins/templates.md) * [🖼️ Plugin Templating (DEPRECATED, hidden)](private-plugins/templates-1.md) * [Screen Templating (Graphics)](private-plugins/templates-advanced.md) -* [Webhooks](private-plugins/create-a-screen.md) +* [Webhooks](private-plugins/webhooks.md) *** diff --git a/private-plugins/create-a-screen.md b/private-plugins/webhooks.md similarity index 100% rename from private-plugins/create-a-screen.md rename to private-plugins/webhooks.md diff --git a/reusing-markup.md b/reusing-markup.md index 7a406ea..63143e6 100644 --- a/reusing-markup.md +++ b/reusing-markup.md @@ -28,12 +28,10 @@ Our Liquid implementation provides a new tag, `{% template [name] %}` , which wo ```liquid -{% raw %} {% template say_hello %} Hello there, {{ name }}. {% endtemplate %} {% render "say_hello", name: "General Kenobi" %} -{% endraw %} ```