https://github.com/karsanda/postcss-indonesian-stylesheets
Write your CSS in Indonesian
https://github.com/karsanda/postcss-indonesian-stylesheets
bahasa bahasa-indonesia css fun indonesia indonesian indonesian-language joke postcss postcss-plugin
Last synced: 3 months ago
JSON representation
Write your CSS in Indonesian
- Host: GitHub
- URL: https://github.com/karsanda/postcss-indonesian-stylesheets
- Owner: karsanda
- License: mit
- Created: 2022-04-09T06:41:46.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-21T13:18:07.000Z (about 2 years ago)
- Last Synced: 2025-12-08T21:45:44.366Z (7 months ago)
- Topics: bahasa, bahasa-indonesia, css, fun, indonesia, indonesian, indonesian-language, joke, postcss, postcss-plugin
- Language: JavaScript
- Homepage:
- Size: 500 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# postcss-indonesian-stylesheets
[PostCSS] plugin for writing CSS in Indonesian.
[PostCSS]: https://github.com/postcss/postcss
```css
.foo {
/* Input example */
a {
warna: merah paksakan!;
}
}
```
```css
.foo {
/* Output example */
a {
color: red !important;
}
}
```
## Usage
**Step 1:** Install plugin:
```sh
npm install --save-dev postcss postcss-indonesian-stylesheets
```
**Step 2:** Check you project for existed PostCSS config: `postcss.config.js`
in the project root, `"postcss"` section in `package.json`
or `postcss` in bundle config.
If you do not use PostCSS, add it according to [official docs]
and set this plugin in settings.
**Step 3:** Add the plugin to plugins list:
```diff
module.exports = {
plugins: [
+ require('postcss-indonesian-stylesheets'),
require('autoprefixer')
]
}
```
[official docs]: https://github.com/postcss/postcss#usage
## Documentations
- [CSS Properties](https://github.com/karsanda/postcss-indonesian-stylesheets/blob/main/properties.js)
- [CSS Values](https://github.com/karsanda/postcss-indonesian-stylesheets/blob/main/values.js)
## Contributing
`postcss-indonesian-stylesheets` doesn't cover all CSS properties and values in Indonesian.
Any help in translating and adding more Indonesian word for properties and values is always appreciated.