Skip to content

Commit

Permalink
QA
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed May 15, 2024
1 parent 496f90b commit aec9b02
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"assertchris/ellison": "^1.0.2"
},
"suggest": {
"assertchris/ellison": "Allows you to analyse sentence complexity"
"assertchris/ellison": "Allows you to analyse sentence complexity",
"league/commonmark": "Adds markdown support"
},
"scripts": {
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
Expand Down
23 changes: 23 additions & 0 deletions src/Themes/Css/ellison.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.hl-moderate-sentence {
background-color: #fef9c3;
}

.hl-complex-sentence {
background-color: #fee2e2;
}

.hl-adverb-phrase {
background-color: #e0f2fe;
}

.hl-passive-phrase {
background-color: #dcfce7;
}

.hl-complex-phrase {
background-color: #f3e8ff;
}

.hl-qualified-phrase {
background-color: #f1f5f9;
}
2 changes: 1 addition & 1 deletion tests/targets/test.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```blade
```ellison
{{-- Blade comment --}}
```

0 comments on commit aec9b02

Please sign in to comment.