HTML is causing problems


 
Thread Tools Search this Thread
Contact Us Post Here to Contact Site Administrators and Moderators HTML is causing problems
# 1  
Old 05-30-2003
HTML is causing problems

I have to suggest that we turn HTML back off. The problem is that angle brackets are used in code and this is causing stuff to get dropped from posts.

I know that we can use the constructs that PxT mentions in this thread. But look how hard it is to educate folks about code tags and the search function. The truth is that we are going to see a lot of broken posts now.

And if we edit all of the posts so that the angle brackets show up with html on, we are stuck. If we turn html off, the post will now look like garbage. I don't know how to post code that looks right both with html on and off.

Another approach might be to disable html only inside of code tags.
# 2  
Old 05-30-2003
Is it able to tweak the vb source code a little bit to detect and change all < > to &lt; and &gt; ? I have previously seen some vb forums did this, but I forgot where. It should not be a big fix I think.
# 3  
Old 06-01-2003
Wow I started a new thread (now deleted) with the same topic as this one.. just didn't see this thread first..

Personally, I agree with Perderabo. Although it will allow for more dynamic posts with insertions of pictures and such, the VB code has always seemed more than adequate to me. Most unix scripts have < and > and &, etc in them, so we can't just copy and paste code anymore. Now we have to go through each one we post and make sure there are no characters that will be interpreted as an html character..

I'm also wondering how many old posts where someone just posted code like:

for i in `ls`
do
&nbsp;&nbsp;<do stuff to $i>
done

will show up as:

for i in `ls`
do
done

because the part in carats is interpreted as some html tag and doesn't show up..

And if we insert html like &amp;nbsp; and such, and then html has to be disabled in the future again, a lot of posts are going to look garbled..
# 4  
Old 06-04-2003
OK, I'm turning it back off !!!! Neo
# 5  
Old 06-04-2003
Thankyou Neo! Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Percentage sign causing awk problems

looks like awk gets confused when there's a % next to a number. command im running: awk -F" " '/phxnaz001b/ && /vol/ && NF { if (($NF >= 80) && ($NF < 83)) { print ; print ; w++ } else if ($NF >= 83) { print ; c++ } } END { printf("%d:OK %d:WARNING %d:CRITICAL\n", o, w, c) }' /tmp/test.log ... (3 Replies)
Discussion started by: SkySmart
3 Replies

2. UNIX for Advanced & Expert Users

Mutt for html body and multiple html & pdf attachments

Hi all: Been racking my brain on this for the last couple of days and what has been most frustrating is that this is the last piece I need to complete a project. There are numerous posts discussing mutt in this forum and others but I have been unable to find similar issues. Running with... (1 Reply)
Discussion started by: raggmopp
1 Replies

3. Shell Programming and Scripting

Removing all except couple of html tags from html file

I tried to find elegant (or at least simple) way to remove all but couple of html tags from html file, but all examples I found dealt with removing all the tags. The logic of the script would be: - if there is <li> or <ul> on the line, do nothing (=write same line to output) - if there is:... (0 Replies)
Discussion started by: juubuntu
0 Replies

4. Shell Programming and Scripting

Parsing HTML, get text between 2 HTML tags

Hi there, I'm quite new to the forum and shell scripting. I want to filter out the "166.0 points". The results, that i found in google / the forum search didn't helped me :( <a href="/user/test" class="headitem menu" style="color:rgb(83,186,224);">test</a><a href="/points" class="headitem... (1 Reply)
Discussion started by: Mysthik
1 Replies

5. Red Hat

Send HTML body and HTML attachment using MUTT command

Hi there.. I need a proper "mutt" command to send a mail with html body and html attachment at a time. Also if possible let me know the other commands to do this task. Please help me.. (2 Replies)
Discussion started by: vickramshetty
2 Replies

6. UNIX for Advanced & Expert Users

shellinabox/html help to insert a keypress with an html button

I am trying to use shellinabox as a terminal emulator. Everything is working except there seems to be no way to simulate an F14 button press in shellinabox. I am already embedding shellinabox in an html page so Im am wondering if there is a way to make an html/js button that will pass F14 to the... (0 Replies)
Discussion started by: syadnom
0 Replies

7. Shell Programming and Scripting

Sendmail with html attachment and html body

Hi folks, I have a perl script which sends out email after successful completion of job as inline html, I want to send it out as two parts now as html inline and html attachment. see the attached script. Thanks in advance (1 Reply)
Discussion started by: sol_nov
1 Replies

8. UNIX for Dummies Questions & Answers

GCC causing problems it seems.

Hi, I seem to be getting errors in relation to GCC it seems as I cant upgrade alot of pkgs until I can upgrade or use a later version of GCC. The error I get is along the lines of ( cc1: error: unrecognized command line option "-Wno-pointer-sign" *** Error code 1 ) Anyway I was wondering if... (2 Replies)
Discussion started by: Browser
2 Replies

9. UNIX for Dummies Questions & Answers

How do I extract text only from html file without HTML tag

I have a html file called myfile. If I simply put "cat myfile.html" in UNIX, it shows all the html tags like <a href=r/26><img src="http://www>. But I want to extract only text part. Same problem happens in "type" command in MS-DOS. I know you can do it by opening it in Internet Explorer,... (4 Replies)
Discussion started by: los111
4 Replies
Login or Register to Ask a Question