Jose Luis Arellano
12. September 2016 um 19:25
Is there a way to import data from csv using tabulate?
\usemodule[database]

\startbuffer[data]
927,273,276
308,930,298
934,390,278
\stopbuffer

\defineseparatedlist
  [TESTLIST]
  [separator=comma,
   before={\starttabulate[|l|l|l|]},
   after=\stoptabulate,
   first=\NC,
   last=\NR,
   right=\NC]

\starttext
\processdatabasebuffer[TESTLIST][data]
\stoptext

Wolfgang