jsonld.lua 398 B

1234567891011121314
  1. --
  2. -- jsonld.lua
  3. --
  4. -- Copyright (c) 2017 Albert Krewinkel, Robert Winkler
  5. --
  6. -- This program is free software; you can redistribute it and/or modify it
  7. -- under the terms of the GNU public license version 2 or later.
  8. -- See the LICENSE file for details.
  9. function Doc (body, meta, variables)
  10. return meta.jsonld
  11. end
  12. setmetatable(_G, {__index = function () return function () return '' end end})