Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-21T13:18:07.000Z (10 months ago)
- Last Synced: 2024-12-15T17:48:48.231Z (about 2 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: 2
- 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.