views:

230

answers:

1

I am currently exporting Drupal data to an external source (XML) programmatically. However, I want the data to run through the site's default Input Format (the filter that runs before user content is displayed on the website) before being written to file.

How do I programmatically apply a Drupal input filter? Is there a specific function call or hook for this purpose? If so, links/advice would be most appreciated.

+4  A: 

You are looking after check_markup

googletorp
Many thanks. Your solution is exactly what I sought.
ford