I'm trying to make a template file with different blocks
<!---begin Edit block -->
//html for editing options
<!---end Edit block -->
<!---begin Delete block -->
//html for editing options
<!---end Delete block -->
<!---begin Show block -->
//html for show
<!---end Show block -->
Is there a way i can use these blocks without parsing the whole file? If I parse this file I get the html for al the blocks and i'm only interested in the Delete block for instance.
I don't want different html files for all these options.