ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* passing buffer to lua functions
@ 2008-09-29 19:53 Olivier
  0 siblings, 0 replies; only message in thread
From: Olivier @ 2008-09-29 19:53 UTC (permalink / raw)
  To: ConTeXt users

Dear all,

I'm trying to implement a very simple filter mechanism in lua like this:

\def\test#1{%
  \startlua
    local pipe, str
    pipe = io.popen("./my_filter '\luaescapestring{#1}'", "r")
    str = pipe:read("*a") 
    tex.print(str)
    pipe:close()
  \stoplua
}

\test{%
  line 1
  line 2
}

The issue I have is that the argument of test has its line breaks
removed in the process (i.e. the filter my_filter sees a single line
argument).  How to prevent this while keeping the lua escape at the same
time? (I know I can implement such a thing with executecommand and using
buffers written to files, but I would like to avoid writing on the hard disk.)

Olivier
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-09-29 19:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-29 19:53 passing buffer to lua functions Olivier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).