function geshinode_node_info in GeSHi Filter for syntax highlighting 5.2
Same name and namespace in other branches
- 6 geshinode.module \geshinode_node_info()
Implementation of hook_node_info().
File
- ./
geshinode.module, line 33
Code
function geshinode_node_info() {
return array(
'geshinode' => array(
'name' => t('Source code node'),
'module' => 'geshinode',
'description' => t('Source code with GeSHi syntax highlighting.'),
),
);
}