• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Charachter suddenly replaced in html/chm output

Contributor ,
Aug 18, 2020 Aug 18, 2020

Copy link to clipboard

Copied

I'm practicing with CourierNew box drawings characters.

Before, looking just fine:

p1.JPG

 

 

Then I replaced the XYZ with new "light horizontal" characters. (copy and paste from same line.) The html5 (or chm) output suddenly has replaced the "down and horizontal" character with something unknown - even though I didn't touch any of the characters in that area.

 

p2.JPG

 

 

 

I can't understand why this happens, and how to avoid it.

 

Views

233

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 18, 2020 Aug 18, 2020

Copy link to clipboard

Copied

That glyph almost certainly is a "replacement" character, meaning that the font at the final client doesn't populate that code point in Unicode.

Unless you can control this, for all clients (browsers, help engines) on all platforms, it's going to remain a risk, and why users here such as myself have suggested converting the art to vectors (SVG), which today has more support than user clients do for way too much of Unicode.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Aug 18, 2020 Aug 18, 2020

Copy link to clipboard

Copied

Here's a screenshot of svg output to encourage you :-} send me a private message if you're curious about the code, which only needed a text editor.

 

syntax railroad – .svg in browsersyntax railroad – .svg in browser

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 19, 2020 Aug 19, 2020

Copy link to clipboard

Copied

Thanks, the svg solution is tempting. However, can those really include (clickable) cross references/links?

The reason I've been considering this Courier New based syntax is to have e.g. interval-literal and integer-literal above as clickable links.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 19, 2020 Aug 19, 2020

Copy link to clipboard

Copied

Links in SVG can likely be done by two or more methods:

  1. Leave the alpha text as text (only vectorize the linedraw text), and use xlink:href tags.
  2. Apply traditional HTML image hotspots.
  3. {various overlay hacks}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 24, 2020 Aug 24, 2020

Copy link to clipboard

Copied

Interresting. If I switch to SVG's - and leave the alpha as text, how do I create a FM cross reference? (Today I import image files as reference.)

We have hundreds of files. For each release, at least some of them are updated.

Target formats are pdf, chm and html5.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 24, 2020 Aug 24, 2020

Copy link to clipboard

Copied

re: If I switch to SVG's - and leave the alpha as text, how do I create a FM cross reference?

Well doing it in the SVG, as xlink:href tags, could be somewhere between nightmare and impossible (for arbitrary work flows).

I'd be inclined to use my vague suggestion #3 above: overlay hack.

 

Include a Text Frame in each Anchored Frame.
Put an invisible Table in it.
Use cell text color visible only during edit (various hacks).
With enough rows and column to have grid spots for every flow chart text area.

Might need non-breaking spaces in cells.
Cell text can now be ordinary Xrefs, and become hot spots in final output...

...assuming all workflows preserve the table/SVG registration.

 

Individual Text Frames over chart text would also work. Of course, if you're going to that effort, these TFs might as well BE the chart text.

 

There may be other methods.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 26, 2020 Aug 26, 2020

Copy link to clipboard

Copied

LATEST

The invisible table sounds fun! However, I'll think about for a while before I do anything like that.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines