Seeing as I found little to nothing when searching for how to configure individual role permissions, editor settings and enabling contrib filters with an install profile, I made something on the off-chance it helps some other poor sap like me who doesn't automagically know where to look for these things.
Enabling filters provided by contrib modules
Search in the .module
files for _filter_info
. Some modules use the same format as Drupal filters of $filters['modulename_filter']
, others don't. Typogrify doesn't:
<?php
function typogrify_filter_info() {
return array(
'typogrify' => array(
?>
so in the install profile it would look like:
<?php
// typogrify
'typogrify' => array(
'weight' => 0,
'status' => 1,
),
?>
whereas Media does: