Setting options for Kramdown

I know I can set some basic settings using set :markdown_engine in config.rb, but is there any way for me to directly set the options for Kramdown?

For example, if I want to set entity_output: :symbolic for Kramdown throughout the site, is there any way for me to do this?

I utilise the below: is that what you need?

set :markdown_engine, :kramdown
set :markdown, :layout_engine => :haml,
               :tables        => true,
               :autolink      => true,
               :smartypants   => true