BloggerApi.parseBloggerAPIPosting (param, content)
Utility function to parse the title out of a Blogger API posting.

Sourcecode in BloggerApi/bloggerAPI.js:
1:   function parseBloggerAPIPosting (param, content) {
2:      if (!content.startsWith("<title>"))
3:         param.content_text = content;
4:      else {
5:         var endTitle = content.lastIndexOf ("</title>");
6:         if (endTitle > 0) {
7:            param.content_title = content.substring (7, endTitle);
8:            param.content_text = content.substring (endTitle+8); 
9:         } else
10:           param.content_text = content;
11:     }
12:  }