Testing syntax highlighting

Testing highlighting tutorial code

function joinGroupPost() {
        IN.API.Raw('/people/~/group-memberships')
          .method('POST')
          .body(JSON.stringify({"group": { "id": 4465900 }, "showGroupLogoInProfile": "true", "emailDigestFrequency": { "code": "daily" }, "emailAnnouncementsFromManagers": "true", "allowMessagesFromMembers": "true", "emailForEveryNewPost": "false", "membershipState": { "code": "member" }}))
          .result(function(result) {
            alert(JSON.stringify(result));
          })
          .error(function(result) {
            alert(JSON.stringify(result));
          });
      }