Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Sep 26, 2024
1 parent 268a4d4 commit 3bf7fe5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions animation.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
--color: black;
}

.animation {
#theAnimation {
font-weight: var(--font-weight);
text-align: var(--text-align);
}

.animation .scrollParagraph {
#theAnimation .scrollParagraph {
text-align: var(--text-align);
margin-bottom: var(--margin-bottom);
}
Expand Down
2 changes: 1 addition & 1 deletion animation.scroll
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
br 1

div.animation
div#theAnimation
With Scroll your
Lines become particles
class atomToDot Lines
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scroll-cli",
"version": "135.0.0",
"version": "136.0.0",
"description": "A language for scientists of all ages. A curated collection of tools for refining and sharing thoughts.",
"main": "scroll.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion parsers/haml.parsers
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ hamlParser
extends abstractScrollParser
atoms urlAtom
catchAllAtomType stringAtom
pattern ^[\w-]+(#|\.)[\w-\.\#]+ *
pattern ^[\w\.]+#[\w\.]+ *
javascript
get tag() {
return this.atoms[0].split(/[#\.]/).shift()
Expand Down
3 changes: 3 additions & 0 deletions releaseNotes.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ ciBadges.scroll
br
thinColumns

📦 136.0.0 9/26/2024
⚠️ BREAKING: (no one should be affected). haml was matching too much. now haml parser requires an #id.

📦 135.0.0 9/26/2024
🎉 added `tufte` theme
⚠️ BREAKING: removed `gazetteCss`. Now use `theme gazette`.
Expand Down
4 changes: 2 additions & 2 deletions tests/haml.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ css

h1#green Green

h1.red Red
h1.red#foo Red

div.red.underline Red underline
div.red.underline#bar Red underline


div.underline#green Green underline
Expand Down

0 comments on commit 3bf7fe5

Please sign in to comment.