i have an html file with this code on it: <!-- <div id="footer"> [{library_path}] </div>--> i can't find any file or tag or function with the name : library_path may any one help me!
That's part of some sort of templating system (most likely), and it'll be configured somewhere - I'm assuming maybe in a config-file. Depending on how the template-parsing is done, that might not actually be parsed, though (the html in that code-snippet is inside <!-- --> which means it's not supposed to be shown at all).
sorry! the "<!--" section in the beginning was added by me. the html code is this: <div id="footer"> [{library_path}] </div>-->
As the previous reply to you said, that is bound to be some sort of string replacement placeholder as part of a template system. The code will look for anything beginning and ending with [{}] and replace it with the appropriate content.
Hi, I think an appropriate thing to ask here, is what are you actually trying to achieve? As one of the guys above said, it looks like a reference to something, without knowing what you are trying to achieve, or where the code come from, I'm not sure anyone can help.
I cant understand what you want to create. Without knowing what you want to create, it is quite impossible to solve your problem. Can you tell me where have you found the code ??