Skip to main content
Known Participant
October 30, 2018
Question

Import HTML pages

  • October 30, 2018
  • 1 reply
  • 641 views

Hello,

I imported some HTML pages but i am having problems for the special characters , sometimes RH can read them and for some it can not. How can i improve this ?

Please advise, thank you

EXP:

Best Regards.

    This topic has been closed for replies.

    1 reply

    Community Manager
    October 30, 2018

    Looks like the files you are reading in are not properly Unicode encoded.

    Can you paste the source code of the HTML file you are trying to import until the body tag?

    Known Participant
    October 31, 2018

    Thank you , this one ?

    <HTML>

    <HEAD>

    <TITLE>Opération > Opérations diverses</TITLE>

    <LINK REL="stylesheet" TYPE="text/css" HREF="../images/pshelp_style.css">

    </HEAD>

    Community Manager
    October 31, 2018

    Okay, this must be very old HTML. And the file is probably not even Unicode encoded.

    Try adding these two lines:

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

    <meta charset="character_set">

    Like this:

    <HTML>

    <HEAD>

    <TITLE>Opération > Opérations diverses</TITLE>

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

    <meta charset="character_set">

    <LINK REL="stylesheet" TYPE="text/css" HREF="../images/pshelp_style.css">

    </HEAD>