Hello!
A small detail has always eluded me.
When I create websites, I use Dreamweaver.
I have noticed that Dreamweaver creates special ways of visualizing foreign letters between CODE VIEW and BROWSER VIEW.
For example, here in Denmark we have 3 special letters; Æ, Ø and Å.
When I type in one such letter in the Design View in Dreamweaver, the letter is transformed into something else when I look at the Code View.
Here's an example, as I've prepared two different code layouts of how it looks. Below is the footer that appears on all of my webpages:
Dreamweaver's automatic transformation
My own custom change in the code itself (changed back from Dreamweaver's method)Code:<!-- Footer Start --> <div id="footer"> Frøsø Køkkenfornyelse · Oldenvej 7 · 3490 Kvistgård<br/> Tlf.: 4917 7728 · Fax: 4917 7738 · E-mail: <a href="frank@froso.dk" class="footerlink">info@froso.dk</a></div> <!-- Footer End -->
So, the letter "Ø" is changed into "ø" and so on.Code:<!-- Footer Start --> <div id="footer"> Frøsø Køkkenfornyelse · Oldenvej 7 · 3490 Kvistgård<br/> Tlf.: 4917 7728 · Fax: 4917 7738 · E-mail: <a href="../frank@froso.dk" class="footerlink">info@froso.dk</a></div> <!-- Footer End -->
My question is this; Is this something I should even bother paying attention to, or does it simply not matter at all?
Currently, I am handcoding the changes so that the CODE itself has the "Æ", "Ø" and "Å" letters, instead of the transformed "ø" conversions.
Is it necessary for me to change the CODE, or do I simply just leave it alone and let Dreamweaver handle the special character conversions?
Cheers,
Bassa



Reply With Quote


Bookmarks