From 982b143ab38452cffafdeff6d21ff1321ee984dd Mon Sep 17 00:00:00 2001 From: Roman Reiss Date: Thu, 12 Feb 2015 10:48:31 +0100 Subject: [PATCH] doc: disable font ligatures MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/iojs/io.js/pull/816 Reviewed-By: Nicu Micleușanu --- doc/api_assets/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 8f4ec8f..c88351e 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -1,6 +1,8 @@ /*--------------------- Layout and Typography ----------------------------*/ html { -webkit-font-smoothing: antialiased; + -webkit-font-variant-ligatures: none; + font-variant-ligatures: none; } body { -- 2.7.4