If you have any questions on how to add any of these blocks or text styles in the Editor, read our Writing & Publishing documentation.
Paragraphs are the default blocks. In fact, this is a paragraph.
Text Styles
bold
italic
strikestrike
superscript
subscript
highlight
Heading 2
Headings are used to write subtitles in posts. Mainly h2
and h3
are used, but Hyvor Blogs supports from h1
to h6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Below is a horizontal line, which can be used to divide sections in your posts.
Unordered list
List item 1
List item 2
List item 3
Nested list item 1
Nested list item 2
Ordered list
List item 1
List item 2
List item 3
Nested list item 1
Nested list item 2
Blockquote
Blockquotes can be used when quoting something published/said elsewhere.
Words can be like X-rays, if you use them properly—they’ll go through anything. You read and you’re pierced.
—Aldous Huxley, Brave New World
Callout
Images
Code Block
1 use Hyvor\FilterQ\Facades\FilterQ; 2 3 $query = FilterQ::expression('id=100|slug=hello') 4 ->builder(Post::class) 5 ->keys(function($keys) { 6 $keys->add('id')->column('posts.id'); 7 $keys->add('slug'); 8 $keys->add('author.name') 9 ->column('authors.name')10 ->join('authors', 'authors.id', '=', 'posts.author_id', 'left');11 })12 ->addWhere();13 14 $posts = $query15 ->limit(25)16+ ->orderBy('id', 'DESC')17 ->get();
Bookmark
GitHub: Where the world builds software
GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat...
github.com