Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 705 Bytes

README.adoc

File metadata and controls

36 lines (29 loc) · 705 Bytes

IRC::Client::Plugin::UrlTitle

A plugin to IRC::Client to post the title of the webpage whose URL has been posted in an IRC channel.

Table of Contents

Usage

Install this module through the Perl 6 package manager (zef):

zef install IRC::Client::Plugin::UrlTitle

Next, enable it as a plugin in your IRC::Client project:

use Config;
use IRC::Client;
use IRC::Client::Plugin::UrlTitle;

sub MAIN
{
	.run with IRC::Client.new(
		:nick("testbot"),
		:plugins(
			IRC::Client::Plugin::UrlTitle.new,
		)
	);
}

License

This sourcecode is distributed under the GPLv3 license.