Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Feb 6, 2024
1 parent e3ed0c1 commit d0bef95
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ composer require hyde/bladedown

## Usage

This package adds a new page type, `.blade.md`, which is a combination of Blade and Markdown. This allows you to use Blade directives in your Markdown files.
This package adds a new "Bladematter" page type using `.blade.md`, which is a combination of Blade and Markdown. This allows you to use Blade directives in your Markdown files.

```blade
```markdown
---
name: World
---
Expand All @@ -40,7 +40,7 @@ Lorem ipsum dolor sit amet.
@include('related-posts')

@push('footer')
<script src="https://example.com/script.js"></script>
<script src="https://example.com/script.js"></script>
@endpush
```

Expand Down Expand Up @@ -107,9 +107,9 @@ The push directive allows you to push to any stack in your layout. Perfect if yo
@endpush
@push('footer')
<script>
console.log('Hello, World!');
</script>
<script>
console.log('Hello, World!');
</script>
@endpush
```

Expand Down

0 comments on commit d0bef95

Please sign in to comment.