From b5ae7dac51821c89caa039e412dd5fbcc3b92d94 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 12 Jan 2018 17:07:30 -0800 Subject: [PATCH] Added indent action --- lib/text.nom | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/text.nom b/lib/text.nom index a1331ef..9db8a07 100644 --- a/lib/text.nom +++ b/lib/text.nom @@ -20,6 +20,9 @@ compile [%str with %patt replaced with %sub, %str s/%patt/%sub] to: compile [%str with %patt replaced with %sub %n times, %str s/%patt/%sub/%n] to: "((\(%str as lua)):gsub(\(%patt as lua), \(%sub as lua), \(%n as lua)))" +compile [indent %str] to: "\%str:gsub('\\n','\\n'..(' '))" +compile [indent %str %n times, indent %str %n x] to: "\%str:gsub('\\n','\\n'..(' '):rep(\%n))" + # Substring # TODO: improve this syntax compile [%str |%start|] to: "\(%str as lua):sub(\(%start as lua), \(%start as lua))"