1. How to Create a Laravel Blog Project that Uses Markdown as Format to Write the Blog Posts
Updated on: 2022-09-01
Posted on: 2022-09-01
Blogs are still a popular form of publishing content of interest to a given community.
HTML is a natural format for defining blog content because Web pages use HTML to determine the page contents.
However, certain HTML tags may be insecure to allow blog post authors to submit content because a malicious author may use specific tags to steal private information from blog visitors.
Markdown is not as powerful as HTML in rendering content, but it is undoubtedly more secure because it does not support the same kind of tags HTML supports and can be insecure.
This package implements a blog system that allows authors to edit the post content in Markdown format, and then it displays that content on Web pages using regular HTML.
More ... Post a comment See comments (0) Trackbacks (0)
HTML is a natural format for defining blog content because Web pages use HTML to determine the page contents.
However, certain HTML tags may be insecure to allow blog post authors to submit content because a malicious author may use specific tags to steal private information from blog visitors.
Markdown is not as powerful as HTML in rendering content, but it is undoubtedly more secure because it does not support the same kind of tags HTML supports and can be insecure.
This package implements a blog system that allows authors to edit the post content in Markdown format, and then it displays that content on Web pages using regular HTML.
More ... Post a comment See comments (0) Trackbacks (0)