diff --git a/stead/Makefile b/stead/Makefile index f0a409c..5be0d2e 100644 --- a/stead/Makefile +++ b/stead/Makefile @@ -18,6 +18,10 @@ install: $(INSTALL) snapshot.lua $(STEADPATH)/snapshot.lua $(INSTALL) object.lua $(STEADPATH)/object.lua $(INSTALL) format.lua $(STEADPATH)/format.lua + $(INSTALL) dash.lua $(STEADPATH)/dash.lua + $(INSTALL) para.lua $(STEADPATH)/para.lua + $(INSTALL) quotes.lua $(STEADPATH)/quotes.lua + uninstall: $(RM) $(STEADPATH)/stead.lua diff --git a/stead/Makefile.windows b/stead/Makefile.windows index 91e4479..32eb7db 100644 --- a/stead/Makefile.windows +++ b/stead/Makefile.windows @@ -15,3 +15,7 @@ install: copy snapshot.lua ..\bin\stead copy object.lua ..\bin\stead copy format.lua ..\bin\stead + copy para.lua ..\bin\stead + copy quotes.lua ..\bin\stead + copy dash.lua ..\bin\stead + diff --git a/stead/dash.lua b/stead/dash.lua new file mode 100644 index 0000000..30344fb --- /dev/null +++ b/stead/dash.lua @@ -0,0 +1,2 @@ +require "format" +format.dash = true diff --git a/stead/format.lua b/stead/format.lua index 82d2a2d..4f94df0 100644 --- a/stead/format.lua +++ b/stead/format.lua @@ -1,8 +1,8 @@ format = { - para = true; + para = false; para_space = ' '; - quotes = true; - dash = true; + quotes = false; + dash = false; filter = nil } diff --git a/stead/para.lua b/stead/para.lua new file mode 100644 index 0000000..812fda4 --- /dev/null +++ b/stead/para.lua @@ -0,0 +1,2 @@ +require "format" +format.para = true diff --git a/stead/quotes.lua b/stead/quotes.lua new file mode 100644 index 0000000..be73386 --- /dev/null +++ b/stead/quotes.lua @@ -0,0 +1,2 @@ +require "format" +format.quotes = true