Skip to content

Commit

Permalink
Adding my collection of lua routines from random places
Browse files Browse the repository at this point in the history
One problem with adopting a less widely known language is
to assemble a useful toolkit.
  • Loading branch information
Dave Taht committed Jan 5, 2012
1 parent 21b08eb commit 2ce3f7b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions lua/orgtable.lua
@@ -0,0 +1,26 @@
-- Convert from/to org tables from lua

module(...,package.seeall)

-- return a string reformatting lua table formatted in org format, which is:
-- |value|value|value|

function orgtable:to(...)
end

-- return a table of org-mode formatted strings from a lua table
function orgtable:to_table(...)
end

-- parse a string formatted in org format
-- and return a lua table

function orgtable:from(...)
end

function orgtable:parse(...)
end

-- Join two org mode formatted tables

function orgtable:join(...)

0 comments on commit 2ce3f7b

Please sign in to comment.