I am currently switching to pander for most of my knitr-markdown formatting, because it provides such great pandoc support. One of the things I am not so happy with is the default center-alignment. Marketing people may love it, but for technical reports it is an horror.
The best choice used by Hmisc is to use left alignment for texts and dates by default, and right alignment for number of all type. 
Is there a simple way to get this globally set in pander?
library(pander)
pander(data.frame(
     name          = letters[1:3],
     size          = 1:3,
     we.have.dates = Sys.Date() - 1:3
 ))