views:

51

answers:

2

how can I disable automatically converting WWW.SOMETHING into a link in Drupal?

I just want to display URL , don't create a like.

This must be done per page, as some of the pages need to have it works as links.

so is there a special TAG or something to tell DRUPAL not to convert it to linkable text?

+2  A: 

You can change the input format. Create one that matches your default and remove the URL filter (which is responsible for this). Then you can select it as input format for one node only, if you like.

Joey
+7  A: 

Auto conversion of URLs into links is handled by the "input format" specified for the node.

To avoid this happening for a specific node, create a new input format where the Url Filter is not enabled.

Bevan