PDA

View Full Version : getting quanta plus 3.5 to see æ. ø. å.


Drenriza
February 7th, 2009, 11:33 AM
When i make a page in quanta plus 3.5, it does not know how to see letters æ. ø. å. So when i save the page into index.html it displays it like æøå.

I've been in :settings->configure quanta plus->environment: and set default character encoding to utf8. so whats going wrong?.

Thanks for any help in advance.

alex.rayu
February 9th, 2009, 10:27 AM
You should set both IDE to UTF8 and the page charset to UTF8 in the <meta> tag. I use Geany and Aptana studio.

Drenriza
February 10th, 2009, 03:42 AM
do you know where i find these ide & meta places?

because i've looked everywhere and can't really find it.

alex.rayu
February 10th, 2009, 05:43 AM
I am attaching a sample empty html file with the required meta tag included in the head section.

As for Quanta IDE, I don't use it so somebody else should comment.

AJB2K3
February 10th, 2009, 05:11 PM
do you know where i find these ide & meta places?

because i've looked everywhere and can't really find it.

have you tryed
www.wc3.org (http://www.wc3.org) or http://www.w3schools.com
this is from my site and its the first line to be written before any html.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<head> tag is just to show its position in the page code.

Drenriza
February 12th, 2009, 07:45 AM
have you tryed
www.wc3.org (http://www.wc3.org) or http://www.w3schools.com
this is from my site and its the first line to be written before any html.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<head> tag is just to show its position in the page code.


Thanks, this helped me alot and now i can see
æ. ø .å in the text

AJB2K3
February 12th, 2009, 02:44 PM
Thanks, this helped me alot and now i can see
æ. ø .å in the text

I'm glad I was able to help you with your issue.