I am wondering am I doing the right "Drupal" way in getting formatted value of node's body field. Here is my code:
$field = field_get_items('node', $node, 'body');
$body = '';
if (isset($field[0]['value'])) {
$body = check_markup($field[0]['value'], $field[0]['format']);
}