コンテンツにスキップ
トップに戻る

プレイグラウンド

runkitが初期化されるまで待ってから、runボタンをクリックしてください

const stylus = require("stylus"); const str = ` // your stylus code here body color white ` stylus.render(str, { filename: 'playground.css' }, function(err, css){ if (err) throw err; console.log("stylus compile result: ", css); });