-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add inline Blade support to Markdown #478
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Handling the shortcode directive in two steps allows for full control, allowing us to choose any directive format for syntactic sugar.
Apply fixes from StyleCI
caendesilva
changed the title
Add inline Blade support to markdown
Add inline Blade support to Markdown
May 31, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introduction
Since HydePHP makes heavy use of Markdown there are some extra features and helpers
created just for Hyde to make using Markdown even easier!
Fixes #463
Blade Support
Since Hyde v0.30.x you can use Laravel Blade in Markdown files!
Using Blade in Markdown
To use Blade in your Markdown files, simply use the Blade shortcode directive,
followed by your desired Blade string.
Standard syntax
Blade includes
Only single-line shortcode directives are supported. If you need to use multi-line Blade code,
use an
@include
directive to render a more complex Blade template.You can pass data to includes by specifying an array to the second argument.
Enabling Blade-supported Markdown
It's disabled by default since it allows arbitrary PHP to run, which could be a security risk,
depending on your setup. However, if your Markdown is trusted, and you know it's safe,
you can enable it in the
config/markdown.php
file.Limitations
All shortcodes must be the first word on a new line.
For example, using a space before the
[Blade]:
will intentionally cause it to not render.