2013-07-07 6 views

risposta

6

È possibile utilizzare opts_current$get pe ...

opts_current$get(name = 'label')

esempio

cat(knit(text =" 
```{r 'hello'} 
render_markdown(strict=TRUE) 
opts_current$get(name = 'label') 
``` 
")) 

che dà

render_markdown(strict = TRUE) 
opts_current$get(name = "label") 

## [1] "hello" 
Problemi correlati