[ bullseye ]
[ ソース: golang-github-wellington-go-libsass ]
パッケージ: golang-github-wellington-go-libsass-dev (0.9.2+git20181130.4ef5b9d-1.1)
golang-github-wellington-go-libsass-dev に関するリンク
Debian の資源:
golang-github-wellington-go-libsass ソースパッケージをダウンロード:
- [golang-github-wellington-go-libsass_0.9.2+git20181130.4ef5b9d-1.1.dsc]
- [golang-github-wellington-go-libsass_0.9.2+git20181130.4ef5b9d.orig.tar.xz]
- [golang-github-wellington-go-libsass_0.9.2+git20181130.4ef5b9d-1.1.debian.tar.xz]
メンテナ:
外部の資源:
- ホームページ [github.com]
類似のパッケージ:
- gnome-shell-extension-workspace-indicator
- gnome-shell-extensions
- golang-github-charmbracelet-keygen-dev
- golang-github-cli-safeexec-dev
- golang-github-minio-filepath-dev
- golang-github-muesli-ansi-dev
- gnulib-l10n
- libgcc-15-dev-m68k-cross
- golang-github-smallstep-assert-dev
- librust-better-scoped-tls-dev
- python3-django-sass
Go wrapper for libsass, the only Sass 3.5 compiler for Go
The only Sass compliant Go library! go-libsass is a wrapper to the sass/libsass (http://github.com/sass/libsass) project.
Basic example:
buf := bytes.NewBufferString("div { p { color: red; } }") if err != nil { log.Fatal(err) } comp, err := libsass.New(os.Stdout, buf) if err != nil { log.Fatal(err) }
if err := comp.Run(); err != nil { log.Fatal(err) }
Output:
div p { color: red; }
その他の golang-github-wellington-go-libsass-dev 関連パッケージ
|
|
|
|
-
- dep: golang-golang-x-net-dev
- Supplementary Go networking libraries
-
- dep: libsass-dev (>= 3.5.5~)
- C/C++ port of the Sass CSS precompiler - development headers