You have to use shortcodes recursively to get the result.
function start_employee($attr,$content){
return ''.do_shortcode($content).'
';
}
add_shortcode("start_employee","start_employee");
function employee($attr,$content){
return '
name
; description
';
}
add_shortcode("employee","employee");