translateMarkup()
Description
This function performs the translation.
Arguments
docName, siteRoot, docContent
- The
docNameargument is a string that contains the file:// URL for the document to be translated. - The
siteRootargument is a string that contains the file:// URL for the root of the site that contains the document to be translated. If the document is outside a site, this string might be empty. - The
docContentargument is a string that contains the contents of the document.
Returns
A string that contains the translated document or an empty string if nothing is translated.
Example
The following instance of the translateMarkup() function calls the C function translateASP(), which is contained in a dynamic link library (DLL) (Windows) or a code library (iOS) called ASPTrans:
function translateMarkup(docName, siteRoot, docContent){ var translatedString = ""; if (docContent.length > 0){ translatedString = ASPTrans.translateASP(docName, siteRoot, ¬ docContent); } return translatedString;}For an all-JavaScript example, see A simple attribute translator example or A simple block/tag translator example.