Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "In your website's source file, paste the code into your existing code anywhere before the </body>
tag."
A block of code is set as follows:
leadinfo = {"Company":input.Company,"Last_Name":input.Last_Name,"First_Name":input.First_Name,"Phone":input.Phone_Number,"Email":input.Email,"Product":input.Product,"Partner_Code":input.Partner_Code,"Lead_Source":input.Lead_Source}; response = zoho.crm.createRecord("Leads",leadinfo);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
leadinfo = {"Company":input.Company,"Last_Name":input.Last_Name,"First_Name":input.First_Name,"Phone":input.Phone_Number,"Email":input.Email,"Product":input.Product,"Partner_Code":input.Partner_Code,"Lead_Source":input.Lead_Source}; response = zoho.crm.createRecord("Leads",leadinfo);
Bold: Indicates a new term, an important word, or words that you see on screen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "You may obtain this code by navigating to Settings | Brands | Your Brand Name | Installation | Website."
Tips or important notes
Appear like this.