Skip to content

Instantly share code, notes, and snippets.

View ekenberg's full-sized avatar

Johan Ekenberg ekenberg

  • Göteborg, Sweden
View GitHub Profile
@ekenberg
ekenberg / bulma-split-button-data-star.html
Last active December 21, 2025 18:55
Bulma split button dropdown using data-star
<!--
Pasting this example for future reference.
https://bulma.io/documentation/components/dropdown/
https://data-star.dev/reference/attributes
-->
<div class="field is-grouped is-grouped-right">
<div class="control">
@ekenberg
ekenberg / if condition on multiple lines
Created April 28, 2014 05:25
web-mode indentation bug
<?php
if (true
|| true)
print "This should be indented";
?>