yannoff/lumiere-ui

一组 Laravel 视图组件

0.3.0 2021-12-20 19:11 UTC

This package is auto-updated.

Last update: 2024-09-10 00:08:54 UTC


README

一组 Laravel 视图组件。

Latest Stable Version Total Downloads License

安装

通过 Composer

composer require yannoff/lumiere-ui

参考

x-heading

生成一个带有适当锚点的标题块。

属性

示例

<x-heading level="2">
    My Heading 2
</x-heading>

将渲染为

<h2><a name="my-heading-2" href="#my-heading-2">My Heading 2</a></h2>

x-md

简单的 Markdown 的基本渲染器。

支持的修饰符

以下是支持的 Markdown 语法修饰符的详细列表

示例

<x-md>
    The `yannoff/lumiere-ui` component is **awesome**.
    See the [repository](https://github.com/yannoff/lumiere-ui "Lumiere Github repo").
<x-md>

将渲染为

The <code>yannoff/lumiere-ui</code> component is <b>awesome</b>.
See the <a href="https://github.com/yannoff/lumiere-ui" title="Lumiere Github repo">repository</a>.

许可证

MIT 许可证 下授权。