format + dash/quotes/para

This commit is contained in:
p.kosyh 2010-07-02 18:37:59 +00:00
parent ff6f9ee1af
commit 9c1a1e3f36
6 changed files with 17 additions and 3 deletions

View file

@ -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

View file

@ -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

2
stead/dash.lua Normal file
View file

@ -0,0 +1,2 @@
require "format"
format.dash = true

View file

@ -1,8 +1,8 @@
format = {
para = true;
para = false;
para_space = ' ';
quotes = true;
dash = true;
quotes = false;
dash = false;
filter = nil
}

2
stead/para.lua Normal file
View file

@ -0,0 +1,2 @@
require "format"
format.para = true

2
stead/quotes.lua Normal file
View file

@ -0,0 +1,2 @@
require "format"
format.quotes = true