<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/perl -w
# This file was preprocessed, do not edit!


package Debconf::Element::Web::Text;
use strict;
use base qw(Debconf::Element);


sub show {
	my $this=shift;

	$_=$this-&gt;question-&gt;extended_description;
	s/\n/\n&lt;br&gt;\n/g;
	$_.="\n&lt;p&gt;\n";

	return "&lt;b&gt;".$this-&gt;question-&gt;description."&lt;/b&gt;$_&lt;p&gt;";
}


1
</pre></body></html>