R Brilhante: includeMarkdown não pode renderizar htmlwidgets

Este arquivo rmd processa ok para html, mas a saída está vazia em brilhante. Mesmo problema com outros htmlwidets como chartJSRadar

file.rmd:

---
title: "test"
output: html_document 
--- 

```{r}  
rpivotTable::rpivotTable(data.frame(a = c(1:10) ) , rows = 'a'    )
```

falta o htmlwidget neste aplicativo brilhante

ui <- shinyUI(
  fluidPage(
    includeMarkdown('file.rmd')
  )
) 
server <- function(input, output) { }  
shinyApp(ui, server)

Esta questão está relacionada aeste

questionAnswers(1)

yourAnswerToTheQuestion