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
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
<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
add a comment |
<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
add a comment |
<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
<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
blogger whatsapp
edited Mar 8 at 10:35
Prayag Verma
5,01432249
5,01432249
asked Mar 7 at 16:16
NickelNickel
194
194
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
Works Great... Is there anyway to remove thatn
– Nickel
Mar 8 at 16:54
Try something like -<script>var content = encodeURIComponent("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + 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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Works Great... Is there anyway to remove thatn
– Nickel
Mar 8 at 16:54
Try something like -<script>var content = encodeURIComponent("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + 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
add a comment |
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.
Works Great... Is there anyway to remove thatn
– Nickel
Mar 8 at 16:54
Try something like -<script>var content = encodeURIComponent("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + 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
add a comment |
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.
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.
answered Mar 8 at 10:31
Prayag VermaPrayag Verma
5,01432249
5,01432249
Works Great... Is there anyway to remove thatn
– Nickel
Mar 8 at 16:54
Try something like -<script>var content = encodeURIComponent("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + 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
add a comment |
Works Great... Is there anyway to remove thatn
– Nickel
Mar 8 at 16:54
Try something like -<script>var content = encodeURIComponent("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + 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("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + content' rel='nofollow' target='_blank'>Share</a>
– Prayag Verma
Mar 11 at 13:04
Try something like -
<script>var content = encodeURIComponent("<b:eval expr='snippet(data:post.body, ellipsis: false, links: false, linebreaks: false ).jsonEscaped'/>".replace("n"," %0A "));</script>
<a class='whatsapp' onclick='location.href="https://api.whatsapp.com/send?text=" + 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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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