cssjanus / cssjanus

↔️ Convert CSS stylesheets between left-to-right and right-to-left.             Made by Wikimedia.

Home Page:https://cssjanus.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status npm Tested with QUnit

CSSJanus

Convert CSS stylesheets between left-to-right and right-to-left.

Based the original Google project.

See Interactive demo.

Install

npm install cssjanus

Usage

var cssjanus = require( 'cssjanus' );
var rtlCss = cssjanus.transform( ltrCss );
transform( string css [, Object options ] ) : string

Parameters:

  • css Stylesheet to transform
  • options: Options object (optional)
  • options.transformDirInUrl (Boolean): Transform directions in URLs, such as ltr to rtl. Default: false.
  • options.transformEdgeInUrl (Boolean): Transform edges in URLs, such as left to right. Default: false.

Preventing flipping

If a rule is not meant to be flipped by CSSJanus, use a /* @noflip */ comment to protect the rule.

.rule1 {
  /* Will be converted to margin-right */
  margin-left: 1em;
}
/* @noflip */
.rule2 {
  /* Will be preserved as margin-left */
  margin-left: 1em;
}

Integrations

Who uses CSSJanus?

See also

About

↔️ Convert CSS stylesheets between left-to-right and right-to-left.             Made by Wikimedia.

https://cssjanus.github.io

License:Apache License 2.0


Languages

Language:JavaScript 100.0%