How do share full body contentHow to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?Send text to specific contact programmatically (whatsapp)How to open a WhatsApp chat with a pre-filled message that spans on multiple lines from my website?Message with phone number and sms_body via whatsapp androidImage sharing on Whatsapp in Ionic Framework on iOSSharing Unicode text via Android Intent gets truncated on WhatsappShare content to whats app using html jquery ON LOADWhatsapp social sharing with MeteorUnable to share link to WhatsApp Web with get methodERR_UNKNOWN_URL_SCHEME WhatsappOpen specific conversation on whatsapp from ionic 4

Multi tool use
Multi tool use

Why Were Madagascar and New Zealand Discovered So Late?

Products and sum of cubes in Fibonacci

Hide Select Output from T-SQL

Everything Bob says is false. How does he get people to trust him?

What defines a dissertation?

Is the destination of a commercial flight important for the pilot?

Can criminal fraud exist without damages?

How does it work when somebody invests in my business?

What's a natural way to say that someone works somewhere (for a job)?

How to combine multiple text files of different lengths and multiple columns by a column

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

Why is delta-v is the most useful quantity for planning space travel?

Irreducibility of a simple polynomial

Was Spock the First Vulcan in Starfleet?

How will losing mobility of one hand affect my career as a programmer?

Should my PhD thesis be submitted under my legal name?

At which point does a character regain all their Hit Dice?

Mapping a list into a phase plot

What's the purpose of "true" in bash "if sudo true; then"

Can I Retrieve Email Addresses from BCC?

when is out of tune ok?

Was the picture area of a CRT a parallelogram (instead of a true rectangle)?

Personal Teleportation as a Weapon

There is only s̶i̶x̶t̶y one place he can be



How do share full body content


How to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?Send text to specific contact programmatically (whatsapp)How to open a WhatsApp chat with a pre-filled message that spans on multiple lines from my website?Message with phone number and sms_body via whatsapp androidImage sharing on Whatsapp in Ionic Framework on iOSSharing Unicode text via Android Intent gets truncated on WhatsappShare content to whats app using html jquery ON LOADWhatsapp social sharing with MeteorUnable to share link to WhatsApp Web with get methodERR_UNKNOWN_URL_SCHEME WhatsappOpen specific conversation on whatsapp from ionic 4













1















<li class='whatsapp whatsapp-mobile'>
<a expr:href='"https://api.whatsapp.com/send?text=" + data:post + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
</li>


I tried this by using the above code snippet but it doesn't work.



Instead of data:post data tag, I also tried date:post.body data tag, but that didn't work as well.










share|improve this question




























    1















    <li class='whatsapp whatsapp-mobile'>
    <a expr:href='"https://api.whatsapp.com/send?text=" + data:post + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
    </li>


    I tried this by using the above code snippet but it doesn't work.



    Instead of data:post data tag, I also tried date:post.body data tag, but that didn't work as well.










    share|improve this question


























      1












      1








      1








      <li class='whatsapp whatsapp-mobile'>
      <a expr:href='"https://api.whatsapp.com/send?text=" + data:post + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
      </li>


      I tried this by using the above code snippet but it doesn't work.



      Instead of data:post data tag, I also tried date:post.body data tag, but that didn't work as well.










      share|improve this question
















      <li class='whatsapp whatsapp-mobile'>
      <a expr:href='"https://api.whatsapp.com/send?text=" + data:post + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
      </li>


      I tried this by using the above code snippet but it doesn't work.



      Instead of data:post data tag, I also tried date:post.body data tag, but that didn't work as well.







      blogger whatsapp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 10:35









      Prayag Verma

      5,01432249




      5,01432249










      asked Mar 7 at 16:16









      NickelNickel

      194




      194






















          1 Answer
          1






          active

          oldest

          votes


















          0














          To make this work, the snippet operator will need to coupled with jsonEscaped function. Applying this on the data:post.body data tag will get the full text of the post.



          snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped


          The snippet operator is used without any length option to prevent any character limit being applied. Regarding the other options used, refer to How to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?



          The complete code will look like -



          <li class='whatsapp whatsapp-mobile'>
          <a expr:href='"https://api.whatsapp.com/send?text=" + snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
          </li>


          The jsonEscaped function will cause linebreak character to be replaced by n. Whatsapp doesn't treat n as a new line and will get literally printed as is in the shared text.






          share|improve this answer























          • Works Great... Is there anyway to remove that n

            – Nickel
            Mar 8 at 16:54











          • Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

            – Prayag Verma
            Mar 11 at 13:04











          • I tried ... But not useful... But I added %0A in post body at every line break with white text.

            – Nickel
            Mar 13 at 5:22











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55048347%2fhow-do-share-full-body-content%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          To make this work, the snippet operator will need to coupled with jsonEscaped function. Applying this on the data:post.body data tag will get the full text of the post.



          snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped


          The snippet operator is used without any length option to prevent any character limit being applied. Regarding the other options used, refer to How to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?



          The complete code will look like -



          <li class='whatsapp whatsapp-mobile'>
          <a expr:href='"https://api.whatsapp.com/send?text=" + snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
          </li>


          The jsonEscaped function will cause linebreak character to be replaced by n. Whatsapp doesn't treat n as a new line and will get literally printed as is in the shared text.






          share|improve this answer























          • Works Great... Is there anyway to remove that n

            – Nickel
            Mar 8 at 16:54











          • Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

            – Prayag Verma
            Mar 11 at 13:04











          • I tried ... But not useful... But I added %0A in post body at every line break with white text.

            – Nickel
            Mar 13 at 5:22
















          0














          To make this work, the snippet operator will need to coupled with jsonEscaped function. Applying this on the data:post.body data tag will get the full text of the post.



          snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped


          The snippet operator is used without any length option to prevent any character limit being applied. Regarding the other options used, refer to How to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?



          The complete code will look like -



          <li class='whatsapp whatsapp-mobile'>
          <a expr:href='"https://api.whatsapp.com/send?text=" + snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
          </li>


          The jsonEscaped function will cause linebreak character to be replaced by n. Whatsapp doesn't treat n as a new line and will get literally printed as is in the shared text.






          share|improve this answer























          • Works Great... Is there anyway to remove that n

            – Nickel
            Mar 8 at 16:54











          • Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

            – Prayag Verma
            Mar 11 at 13:04











          • I tried ... But not useful... But I added %0A in post body at every line break with white text.

            – Nickel
            Mar 13 at 5:22














          0












          0








          0







          To make this work, the snippet operator will need to coupled with jsonEscaped function. Applying this on the data:post.body data tag will get the full text of the post.



          snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped


          The snippet operator is used without any length option to prevent any character limit being applied. Regarding the other options used, refer to How to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?



          The complete code will look like -



          <li class='whatsapp whatsapp-mobile'>
          <a expr:href='"https://api.whatsapp.com/send?text=" + snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
          </li>


          The jsonEscaped function will cause linebreak character to be replaced by n. Whatsapp doesn't treat n as a new line and will get literally printed as is in the shared text.






          share|improve this answer













          To make this work, the snippet operator will need to coupled with jsonEscaped function. Applying this on the data:post.body data tag will get the full text of the post.



          snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped


          The snippet operator is used without any length option to prevent any character limit being applied. Regarding the other options used, refer to How to increase character lengh in blogger snippet instead of using limited length, 'data:post.snippet'?



          The complete code will look like -



          <li class='whatsapp whatsapp-mobile'>
          <a expr:href='"https://api.whatsapp.com/send?text=" + snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped + " | "' class='whatsapp' rel='nofollow' target='_blank'/>
          </li>


          The jsonEscaped function will cause linebreak character to be replaced by n. Whatsapp doesn't treat n as a new line and will get literally printed as is in the shared text.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 8 at 10:31









          Prayag VermaPrayag Verma

          5,01432249




          5,01432249












          • Works Great... Is there anyway to remove that n

            – Nickel
            Mar 8 at 16:54











          • Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

            – Prayag Verma
            Mar 11 at 13:04











          • I tried ... But not useful... But I added %0A in post body at every line break with white text.

            – Nickel
            Mar 13 at 5:22


















          • Works Great... Is there anyway to remove that n

            – Nickel
            Mar 8 at 16:54











          • Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

            – Prayag Verma
            Mar 11 at 13:04











          • I tried ... But not useful... But I added %0A in post body at every line break with white text.

            – Nickel
            Mar 13 at 5:22

















          Works Great... Is there anyway to remove that n

          – Nickel
          Mar 8 at 16:54





          Works Great... Is there anyway to remove that n

          – Nickel
          Mar 8 at 16:54













          Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

          – Prayag Verma
          Mar 11 at 13:04





          Try something like - <script>var content = encodeURIComponent(&quot;<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>&quot;.replace(&quot;n&quot;,&quot; %0A &quot;));</script> <a class='whatsapp' onclick='location.href=&quot;https://api.whatsapp.com/send?text=&quot; + content' rel='nofollow' target='_blank'>Share</a>

          – Prayag Verma
          Mar 11 at 13:04













          I tried ... But not useful... But I added %0A in post body at every line break with white text.

          – Nickel
          Mar 13 at 5:22






          I tried ... But not useful... But I added %0A in post body at every line break with white text.

          – Nickel
          Mar 13 at 5:22




















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55048347%2fhow-do-share-full-body-content%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          d,QBuSiP6GEc,5Y MAIkg0ZxNmVmUH4l IYMlaYl3cZtqeHK4RQga8Q,1,30qhSsaaJInD0c0YsoIMmWmDzrGA 95RG UPF767I7
          x9Y684bgkypIYS,z7RL 2nPPB

          Popular posts from this blog

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?