Forum Replies Created
-
AuthorPosts
-
February 9, 2024 at 12:12 am in reply to: [Git it write]: The pages created by default using classic editor #14249Vignesh SweekaranParticipant
Hi Aakash,
I also don’t want to edit the post via Classic or Block editor. I too prefer the one way from markdown file.
Currently I use Jekyll with just plain markdown files https://github.com/vigneshsweekaran/vigneshsweekaran.github.io
Website: https://devopspilot.comNow I am migrating to WordPress, want to use the same markdown approach.
But the problem is I am using Greenshift WordPress theme https://wordpress.org/themes/greenshift/ which is a Block theme.
Im my markdown files I am using command highlighter like below
`
sudo apt update
sudo apt install git
`
It is not properly converting as per the Theme blocks. The code block in the Greenshift Theme is very nice.
Currently the markdown is converted to html as Classic editor way. So some features of the block are not available.
For now I found this plugin https://wordpress.org/plugins/convert-to-blocks/ to convert to block, so code block applies
Please let me know If any other options available.
Thanks,
Vignesh SweekaranFebruary 8, 2024 at 4:49 pm in reply to: [Git it write]: The pages created by default using classic editor #14259Vignesh SweekaranParticipantHi Aakash,
More information about my project. Currently I am using Jekyll with plain markdown files https://github.com/vigneshsweekaran/vigneshsweekaran.github.io
Website: https://devopspilot.comI am migrating to wordpress now.
Thanks,
VigneshFebruary 8, 2024 at 4:48 pm in reply to: [Git it write]: The pages created by default using classic editor #14258Vignesh SweekaranParticipantHi Aakash,
I also don’t prefer using Classic or Block editor, I too prefer one way via markdown.
I am using block theme. The GIW converts to html as classic editor way. So not able to use the features of block theme. In the block theme, the code block looks very nice.
I found one solution to convert to block using this plugin https://wordpress.org/plugins/convert-to-blocks/
Please let me know if you have any other options.
Thanks,
VigneshFebruary 7, 2024 at 4:53 pm in reply to: [Git it write]: The pages created by default using classic editor #14240Vignesh SweekaranParticipantHi Aakash,
Thanks for sharing the details.
Currently my markdown file looks like this eg: git.md
Run the following command to install git in ubuntu operating system
`
sudo apt update
sudo apt install git
`
For using with block editor compatible, I need to do the following changes.
<!– wp:paragraph –>
Run the following command to install git in Centos operating system</p>
<!– /wp:paragraph –><!– wp:code –>
sudo yum update sudo yum install git
<!– /wp:code –>
This looks like lot of effort for writing the content in markdown file.
February 5, 2024 at 5:40 pm in reply to: [git it write]: Which field in front matter decides markdown to be post or page #14214Vignesh SweekaranParticipantThank you so much Aakash.
I am able to publish as posts and pages.
-
AuthorPosts