Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #511458

    I put the following sourcecode in a code block with pre-tags around it.

    function SHA256(input) {
      var rawHash = Utilities.computeDigest(Utilities.DigestAlgorithm.SHA_256, input);
      var txtHash = '';
        for (j = 0; j <rawHash.length; j++) {
       var hashVal = rawHash[j];
        if (hashVal < 0)
          hashVal += 256; 
        if (hashVal.toString(16).length == 1)
          txtHash += "0";
        txtHash += hashVal.toString(16);
      }
        return txtHash;
      }

    The page shows de code in the pre tags, but also one more time outside of these tags.
    The whole page is looking like crap now and I have no clue what to do.

    Can you have a look?
    Example: http://www.envis.nl/nieuw-maak-je-adwords-campagne-effectiever-met-google-customer-match/

    #511463

    Example moved here! http://www.envis.nl/enfold-error/

    #511465

    Hey!

    Do you mind creating a temporary admin login and posting it here privately?

    Cheers!
    Yigit

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.