AppStore.AppDetailsPage.getHtmlComment C# (CSharp) Method

getHtmlComment() private method

Builds the html content which has to loaded into the WebView for Reviews Section.
private getHtmlComment ( ) : string
return string
        private string getHtmlComment()
        {
            return "<div id='disqus_thread'></div>"
                    + "<script type='text/javascript'>"
                    + "var disqus_identifier = '" + app.Name + "_" + app.Author + "';"
                    + "var disqus_title = '" + app.Name + "';"
                    + "var disqus_url='http://www.buildmlearn.org/appstore/" + app.Name + "_" + app.Author + "';"
                    + "var disqus_shortname = 'buildmlearn';"
                    + " (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;"
                    + "dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';"
                    + "(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })();"
                    + "</script>";
        }
        private void GridScreenshots_ContainerContentChanging(ListViewBase sender, ContainerContentChangingEventArgs args)