Ruby support in Firefox Developer Edition 38

It was a long-time request from East Asian users, especially Japanese users, to have ruby support in the browser.

Formerly, because of the lack of native ruby support in Firefox, users had to install add-ons like HTML Ruby to make ruby work. However, in Firefox Developer Edition 38, CSS Ruby has been enabled by default, which also brings the support of HTML5 ruby tags.

Introduction

What is ruby? In short, ruby is an extra text, which is usually small, attached to the main text for indicating the pronunciation or meaning of the corresponding characters. This kind of annotation is widely used in Japanese publications. It is also common in Chinese for books for children, educational publications, and dictionaries.

Ruby Annotation

Basic Usage

Basically, the ruby support consists of four main tags: <ruby>, <rb>, <rt>, and <rp>. <ruby> is the tag that wraps the whole ruby structure, <rb> is used to mark the text in the normal line, <rt> is for the annotation, and <rp> is a tag which is hidden by default. With the four tags, the result above can be achieved from the following code:


  とある科学超電磁砲
  とあるかがくレールガン

Since <rb> and <rt> can be auto-closed by themselves, we don’t bother to add code to close those tags manually.

As shown in the image, the duplicate parts as well as <rp>s are hidden automatically. But why should we add content which is hidden by default?

The answer is: it is more natural in semantics, and it helps conversion to the inline form, which is a more general form accepted by more software. For example, this allows the page to have a decent effect on a browser with no ruby support. It also enables the user agent to generate well-formed plain text when you want to copy text with ruby (though this feature hasn’t yet been landed on Firefox).

In addition, the extra content makes it possible to provide inline style of the annotation without changing the document. You would only need to add a rule to your stylesheet:

ruby, rb, rt, rp {
  display: inline;
  font-size: inherit;
}

Actually, if you don’t have those requirements, only <ruby> and <rt> are necessary. For simplest cases, e.g. a single ideographic character, you can use code like:

Saki

Advanced Support

Aside from the basic usage of ruby, Firefox now provides support for more advanced cases.

By default, if the width of an annotation does not match its base text, the shorter text will be justified as shown in the example above. However, this behavior can be controlled via the ruby-align property. Aside from the default value (space-around), it can also make the content align to both sides (space-between), centered (center), or aligned to the start side (start).

Multiple levels of annotations are also supported via tag <rtc> which is the container of <rt>s. Every <rtc> represents one level of annotation, but if you leave out the <rtc>, the browser will do some cleanup to wrap consecutive <rt>s in a single anonymous <rtc>, forming one level.

For example, we can extend the example above to:


  とある科学超電磁砲
  とあるかがくレールガン
  ToaruKagakunoRērugan

If you do not put any <rt> inside a <rtc>, this annotation will become a span across the whole base:


  とある科学超電磁砲
  とあるかがくレールガン
  A Certain Scientific Railgun

You can use ruby-position to place the given level of annotation on the side you want. For the examples above, if you want to put the second level under the main line, you can apply ruby-position: under; to the <rtc> tag. Currently, only under and the default value over is supported.

(Note: The CSS Working Group is considering a change to the default value of ruby-position, so that annotations become double-sided by default. This change is likely to happen in a future version of Firefox.)

In the end, an advanced example of ruby combining everything introduced above:

Advanced Example for Ruby

rtc:lang(en) {
  ruby-position: under;
  ruby-align: center;
  font-size: 75%;
}

  とある科学超電磁砲
  とあるかがくレールガン
  A Certain Scientific Railgun

Got questions, comments, feedback on the implementation? Don’t hesitate to share your thoughts or issues here or via bugzilla.

About Xidorn Quan

More articles by Xidorn Quan…


6 comments

  1. Chris

    Digging the Mikoto reference.

    March 5th, 2015 at 08:17

  2. Horo

    Level 5 Browser

    March 8th, 2015 at 21:41

    1. Hexcles

      Lol! What a pity we still don’t have CSS Level 4 yet. It would be so good to have a CSS-Level-5 browser supporting this Level-5 super power.

      March 19th, 2015 at 17:25

  3. Ruben Schade

    Despite the (predictably Western) naysayers linking here, this is a big deal. I also dig the Railgun reference :3

    March 31st, 2015 at 17:40

  4. Vannak Eng

    If it is supported only in firefox so user will have trouble viewing it in other browser.

    April 1st, 2015 at 04:39

    1. Xidorn Quan

      Currently, other browsers only support <ruby>, <rt>, and <rp>. In common cases, these three tags are interoperable in most modern web browsers. We hope other browsers would also implement the rest of the features. But before that happens, it would be better for authors to only use the interoperable tags.

      April 1st, 2015 at 04:48

Comments are closed for this article.