Java Code Examples for com.vladsch.flexmark.html.renderer.NodeRendererContext#isDoNotRenderLinks()
The following examples show how to use
com.vladsch.flexmark.html.renderer.NodeRendererContext#isDoNotRenderLinks() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: VideoLinkNodeRenderer.java From MarkdownView with Apache License 2.0 | 6 votes |
private void render(final VideoLink node, final NodeRendererContext context, final HtmlWriter html) { final String name = node.getText().toString(); if (context.isDoNotRenderLinks()) { context.renderChildren(node); } else if (!TextUtils.isEmpty(name)) { ResolvedLink resolvedLink = context.resolveLink(LinkType.LINK, node.getUrl().unescape(), null); if (name.equals("youtube") || name.equals("yt")) { html.attr("class", "player yt-player"); html.withAttr().tag("div"); html.attr("type", "text/html"); html.attr("frameborder", "0"); html.attr("allowfullscreen", ""); html.attr("src", String.format("https://www.youtube.com/embed/%s", resolvedLink.getUrl())); html.srcPos(node.getChars()).withAttr(resolvedLink).tag("iframe"); html.tag("/iframe"); html.tag("/div"); } else { context.renderChildren(node); } } }
Example 2
Source File: TwitterNodeRenderer.java From MarkdownView with Apache License 2.0 | 4 votes |
private void render(final Twitter node, final NodeRendererContext context, final HtmlWriter html) { final String name = node.getText().toString(); if (context.isDoNotRenderLinks()) { context.renderChildren(node); } else if (!TextUtils.isEmpty(name)) { String value, url; try { value = URLEncoder.encode(context.resolveLink(LinkType.LINK, node.getUrl().unescape(), null).getUrl(), "utf-8"); } catch (UnsupportedEncodingException e) { context.renderChildren(node); return; } if (name.equals("tweet")) { url = String.format("https://publish.twitter.com/oembed?url=https://twitter.com/twitter/status/%s", value); } else if (name.equals("tweet-hide-cards")) { url = String.format("https://publish.twitter.com/oembed?url=https://twitter.com/twitter/status/%s&hide_media=true", value); } else if (name.equals("follow")) { mHtml = String.format("<a href=\"https://twitter.com/%s\" data-size=\"large\" class=\"twitter-follow-button\" data-show-count=\"true\">Follow @%s</a><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>", value, value); html.srcPos(node.getChars()).append(mHtml); return; } else { context.renderChildren(node); return; } mHtml = null; new Thread(new LoadTweetRunnable(url)).start(); mCondition.close(); mCondition.block(); if (mHtml == null) { context.renderChildren(node); } else { mHtml = mHtml.replaceAll("src=\"//", "src=\"https://"); html.srcPos(node.getChars()).append(mHtml); } } }