How To Install libmarkdent-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmarkdent-perl
on Kali Linux.
What is libmarkdent-perl
libmarkdent-perl is:
Markdent provides a toolkit for parsing Markdown (and Markdown variants, aka dialects). Unlike the other Markdown Perl tools, this module can be used for more than just generating HTML. The core parser generates events (like XML’s SAX), making it easy to analyze a Markdown document in any number of ways.
If you’re only interested in converting Markdown to HTML, you can use the Markdent::Simple::Document class to do this, although you can just as well use better battle-tested tools like Text::Markdown.
Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML.
There are three methods to install libmarkdent-perl
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libmarkdent-perl Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install libmarkdent-perl
using apt-get
by running the following command:
Install libmarkdent-perl Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install libmarkdent-perl
using apt
by running the following command:
Install libmarkdent-perl Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
After updating apt database, We can install libmarkdent-perl
using aptitude
by running the following command:
How To Uninstall libmarkdent-perl on Kali Linux
To uninstall only the libmarkdent-perl
package we can use the following command:
Uninstall libmarkdent-perl And Its Dependencies
To uninstall libmarkdent-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove libmarkdent-perl Configurations and Data
To remove libmarkdent-perl
configuration and data from Kali Linux we can use the following command:
Remove libmarkdent-perl configuration, data, and all of its dependencies
We can use the following command to remove libmarkdent-perl
configurations, data and all of its dependencies, we can use the following command:
Dependencies
libmarkdent-perl have the following dependencies:
- libfile-slurper-perl
- libgetopt-long-descriptive-perl
- libhtml-parser-perl
- liblist-allutils-perl
- libmodule-runtime-perl
- libmoose-perl
- libmoosex-getopt-perl
- libmoosex-role-parameterized-perl
- libmoosex-semiaffordanceaccessor-perl
- libmoosex-strictconstructor-perl
- libnamespace-autoclean-perl
- libparams-validationcompiler-perl
- libspecio-perl
- libtree-simple-perl
- libtry-tiny-perl
- perl
References
Summary
In this tutorial we learn how to install libmarkdent-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.