How To Install drupal7-markdown on CentOS 7

In this tutorial we learn how to install drupal7-markdown on CentOS 7. drupal7-markdown is Enables the creation of forms and questionnaires

Introduction

In this tutorial we learn how to install drupal7-markdown on CentOS 7.

What is drupal7-markdown

Provides Markdown filter integration for Drupal input formats. The Markdown syntax is designed to co-exist with HTML, so you can set up input formats with both HTML and Markdown support. It is also meant to be as human-readable as possible when left as “source”. There are many different Markdown implementation. Markdown filter uses “PHP Markdown extra” that includes many common and useful extensions to the original Markdown. This includes tables, footnotes and definition lists. This package provides the following Drupal 7 module * markdown

We can use yum or dnf to install drupal7-markdown on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install drupal7-markdown.

Install drupal7-markdown on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install drupal7-markdown using yum by running the following command:

sudo yum -y install drupal7-markdown

Install drupal7-markdown on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install drupal7-markdown using dnf by running the following command:

sudo dnf -y install drupal7-markdown

How To Uninstall drupal7-markdown on CentOS 7

To uninstall only the drupal7-markdown package we can use the following command:

sudo dnf remove drupal7-markdown

References

Summary

In this tutorial we learn how to install drupal7-markdown on CentOS 7 using yum and dnf.