From 2f4ef0220ebbb61323060490747074844b949f18 Mon Sep 17 00:00:00 2001 From: Stefan de Bruijn Date: Mon, 21 Dec 2020 14:47:12 +0100 Subject: [PATCH] Changed some docs. --- Grbl_Esp32/src/Spindles/PWMSpindle.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Grbl_Esp32/src/Spindles/PWMSpindle.h b/Grbl_Esp32/src/Spindles/PWMSpindle.h index 6fa9239b..4e936f1c 100644 --- a/Grbl_Esp32/src/Spindles/PWMSpindle.h +++ b/Grbl_Esp32/src/Spindles/PWMSpindle.h @@ -32,13 +32,16 @@ namespace Settings { // I didn't create a full parser, as we don't need it. // See: https://en.wikipedia.org/wiki/YAML // + // Supported: // - We start with '---' and assume a single document. If we encounter '---', error. // - # is a comment // - indentation is with spaces - // - Tabs are not allowed + // - Tabs are not allowed for indentation // - key: value pairs - // - '-' lists // - strings with quotes + // + // Unsupported: + // - '-' lists // - c-style escaping in strings // - repeated nodes are initially denoted by an ampersand (&) and thereafter referenced with an asterisk (*). // - '['..']', !! and % are simply not supported.