Re: [Rd] inject html code into Rd file

2010-04-03 Thread Yihui Xie
Sounds like a good idea. The RCurl package can also do the base64 encoding (depends on libcurl), e.g. library(RCurl) img <- function() { tf <- tempfile() tf.out <- tempfile() png(tf, width = 500, height = 500) plot(1:100, rnorm(100), pch = 21, bg = "red", cex = 2) dev.off()

Re: [Rd] inject html code into Rd file

2010-04-03 Thread Romain Francois
Le 03/04/10 02:04, Duncan Murdoch a écrit : On 02/04/2010 8:06 AM, Duncan Murdoch wrote: On 02/04/2010 7:13 AM, Romain Francois wrote: Le 02/04/10 13:07, Duncan Murdoch a écrit : On 02/04/2010 6:17 AM, Romain Francois wrote: Hello, I'm trying to inject html code into an Rd file. For example

Re: [Rd] inject html code into Rd file

2010-04-02 Thread Duncan Murdoch
On 02/04/2010 8:06 AM, Duncan Murdoch wrote: On 02/04/2010 7:13 AM, Romain Francois wrote: Le 02/04/10 13:07, Duncan Murdoch a écrit : On 02/04/2010 6:17 AM, Romain Francois wrote: Hello, I'm trying to inject html code into an Rd file. For example : \name{test} \alias{test} \title{test} \des

Re: [Rd] inject html code into Rd file

2010-04-02 Thread Duncan Murdoch
On 02/04/2010 7:13 AM, Romain Francois wrote: Le 02/04/10 13:07, Duncan Murdoch a écrit : On 02/04/2010 6:17 AM, Romain Francois wrote: Hello, I'm trying to inject html code into an Rd file. For example : \name{test} \alias{test} \title{test} \description{ \if{html}{ \Sexpr[stage=render,resul

Re: [Rd] inject html code into Rd file

2010-04-02 Thread Romain Francois
Le 02/04/10 13:07, Duncan Murdoch a écrit : On 02/04/2010 6:17 AM, Romain Francois wrote: Hello, I'm trying to inject html code into an Rd file. For example : \name{test} \alias{test} \title{test} \description{ \if{html}{ \Sexpr[stage=render,results=text,echo=FALSE]{ "hello" } } } when this f

Re: [Rd] inject html code into Rd file

2010-04-02 Thread Duncan Murdoch
On 02/04/2010 6:17 AM, Romain Francois wrote: Hello, I'm trying to inject html code into an Rd file. For example : \name{test} \alias{test} \title{test} \description{ \if{html}{ \Sexpr[stage=render,results=text,echo=FALSE]{ "hello" } } } when this file is rendered, instead of having "h

[Rd] inject html code into Rd file

2010-04-02 Thread Romain Francois
Hello, I'm trying to inject html code into an Rd file. For example : \name{test} \alias{test} \title{test} \description{ \if{html}{ \Sexpr[stage=render,results=text,echo=FALSE]{ "hello" } } } when this file is rendered, instead of having "hello" in bold, I get hello, i.e. characters <