Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: HTML Noparse Tags ??  (Read 12569 times)

0 Members and 1 Guest are viewing this topic.

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
HTML Noparse Tags ??
« on: February 18, 2009, 01:42:30 PM »
I'm trying to display a link on my blog in HTML. What </> tags are used to make it not parse into a web link?

<a title="Visit evilfantasy's blog" href="http://evilfantasy.wordpress.com/">evilfantasy's blog[/url]


kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #1 on: February 18, 2009, 02:02:16 PM »
Hmmm, there isn't one I'd say.

What exactly do you want to do? Just have the text "evilfantasy's blog"?

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #2 on: February 18, 2009, 02:04:08 PM »
NO I want the HTML to NOT parse into a link. I want the raw HTML to show so others can copy it, for a link exchange.

I just found this <noparse-block>

Going to try it. BRB.

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #3 on: February 18, 2009, 02:07:41 PM »
<noparse-block>? Well, let me know if it works... ;D

But now I understand what you want to do!

Use this:

&lt;a title="Visit evilfantasy's blog" href="http://evilfantasy.wordpress.com/"&gt;evilfantasy's blog&lt;/a&gt;

That should work if WordPress doesn't automattically format ASCII codes.

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #4 on: February 18, 2009, 02:15:02 PM »
WordPress doesn't accept ASCII, Java or anything but HTML. Security reasons...

The <noparse-block> didn't work and <noparse> works but it displays the noparse, and screws it up.

Look at it now http://evilfantasy.wordpress.com/link-exchange/

What I want is something like on this page. http://tricks-collections.com/link-exchange/

It doesn't have to be in the blocks, but it does need to be just HTML so someone can copy/paste it onto their page.

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #5 on: February 18, 2009, 02:17:04 PM »
I tried viewing the page source on this page http://tricks-collections.com/link-exchange/ but couldn't find his code with my untrained eye. I have a feeling it might be Java anyway so wouldn't work.

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #6 on: February 18, 2009, 02:22:42 PM »
I tried viewing the page source on this page http://tricks-collections.com/link-exchange/ but couldn't find his code with my untrained eye. I have a feeling it might be Java anyway so wouldn't work.

It's definitely not JavaScript ( ;) ). It's just that the code I gave you would work - if you weren't using WordPress.

Okay, well try inserting it into a textarea like that other site is doing. Change the "cols" (columns) and "rows" if needed.

Code: [Select]
<textarea cols="10" rows"5">
&lt;a title="Visit evilfantasy's blog" href="http://evilfantasy.wordpress.com/"&gt;evilfantasy's blog&lt;/a&gt;
</textarea>

Maybe there is a WP plugin that allows code to be added to pages without parsing?

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #7 on: February 18, 2009, 02:28:25 PM »
Quote
Maybe there is a WP plugin that allows code to be added to pages without parsing?

He's using a paid version of Wordpress so he can do more. There are lot's of plug ins in the paid versions, free users are limited to what WP provides, which isn't a lot but enough to keep me happy and you can usually use HTML to get what you want but this one has me stumped.

I've tried every tag I can think of. code, php, html. Nothing works for some reason!!

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #8 on: February 18, 2009, 02:45:04 PM »
Probably not able to do anything then.

Code: [Select]
<textarea cols="10" rows"5">
&lt;a title="Visit evilfantasy's blog" href="http://evilfantasy.wordpress.com/"&gt;evilfantasy's blog&lt;/a&gt;
</textarea>

Did you try that?

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #9 on: February 18, 2009, 02:53:07 PM »
You almost got it. I had to remove the
 tags but it is displayed correctly now.

But I'm confused. Now if I copy/paste this <a title=”Visit evilfantasy’s blog” href=”http://evilfantasy.wordpress.com/”>evilfantasy’s blog[/url]

It doesn't parse into a link, it just stays as HTML ???

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #10 on: February 18, 2009, 02:55:03 PM »
LOL, I haven't a clue what that site is doing.....

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #11 on: February 18, 2009, 02:57:06 PM »
I think I'm going to be happy with it. If they want to exchange links then they surely know how to make mine work on their site.

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #12 on: February 18, 2009, 02:59:42 PM »
Okay, then. ;D

I just made the offer because having your own is way more flexible.

evilfantasy

    Topic Starter
  • Malware Removal Specialist


  • Genius
  • Calm like a bomb
  • Thanked: 493
  • Experience: Experienced
  • OS: Windows 11
Re: HTML Noparse Tags ??
« Reply #13 on: February 18, 2009, 03:00:53 PM »
If I give up then I'll probably stumble onto the answer blindly. Usually works that way lol.

kpac

  • Web moderator
  • Moderator


  • Hacker

  • kpac®
  • Thanked: 184
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 7
Re: HTML Noparse Tags ??
« Reply #14 on: February 18, 2009, 03:16:41 PM »
Okay LOL.

Sent you a PM (just incase you went to sleep) ;D