Sponsored Content
Full Discussion: printing rich text
Top Forums UNIX for Dummies Questions & Answers printing rich text Post 726 by angthelaw on Wednesday 10th of January 2001 12:27:31 PM
Old 01-10-2001
I agree that a MS printing solution is the better way to go and I've already figured out a way to accomplish that. But, unfortunately, I'm not permitted to go that route and must print rich text through unix.

So, any ideas?
 

8 More Discussions You Might Find Interesting

1. Solaris

Bar code generation in to the text file and printing the same using lp command.

Hi, I need the information regaring bar code printing. I am looking for the program which runs on solaris that take number string (like mobile number, bill number etc) as input and generate bar code font in to the text file. Remember it is not the bit map. The program just writes the fonts in to... (0 Replies)
Discussion started by: Manjunath Naik
0 Replies

2. Linux

Plain Text printing issues

I'm attempting to print to a networked konica printer. No linux drivers that I know of exist, but we've always used HP 5si drivers and have had good results. We just loaded a box up with CentOS 5, and now when we print any sort of file from the command line (lp -dkonica <filename>), the text is... (0 Replies)
Discussion started by: fender177
0 Replies

3. Shell Programming and Scripting

Split a Capital rich string

Hello all, I am new and straight away jump in with a question, sorry! I am working on a new Mediawiki site and have 1500 html pages I want to add to the system, I will mostly do them one by one as it needs some editing, but one thing I like to do in one go, I need to change ... (12 Replies)
Discussion started by: externalaw
12 Replies

4. Shell Programming and Scripting

Send mail with rich text / HTML with image

Hi, Is it possible to send mail from my HP-Ux system with images, rich text? I would like to program in such a way that I have my company's logo(.jpg) image attached in the mail geeting triggered. I would like to send a rich text/HTML email instead of plain text mail to the recipients. Is it... (2 Replies)
Discussion started by: rythym05
2 Replies

5. Shell Programming and Scripting

printing a text until a keyword is found

Hi, here's the problem: text="hello1 hello2 world earth mars jupiter planet"how do I print the text until it finds the keyword "mars" so that the desired output is output="hello1 hello2 world earth" I have rtfm of sed and I think the problem is, that if I find the word "mars" it will... (7 Replies)
Discussion started by: icantfindauser
7 Replies

6. Shell Programming and Scripting

Modify blocks of text by printing missing columns

Hi Experts, I have a problem where I want to print missing columns (3,4) within a block of text. Each block is separated by "###". Some rows have missing column 3 and 4 which should be same as the previous value in column 3 and 4. The file is space delimited. For example: INPUT ###... (5 Replies)
Discussion started by: mira
5 Replies

7. Shell Programming and Scripting

Printing every alternate columns in a text file

Hi, I have a big matrix with 1 million columns and 21 rows, which is a tab delimited file. I would like to print every alternate columns into a new file. For each row, the start column will be always the first column. For example the input file 1 2 4 5 8 0 7 9 2 5 6 3 0 6 9 2 3 6 3 6 6 0... (3 Replies)
Discussion started by: Kanja
3 Replies

8. Shell Programming and Scripting

Printing multiple lines on the same line between specific text

This is an extract from a large file. The lines that start with fc are ports on a fabric switch. In between each fc port there is information about the port. fc2/12 is up Port description is SEIEDISCOVER-3 Speed is 4 Gbps fc2/13 is down (Administratively down) fc2/14 is up Port... (1 Reply)
Discussion started by: kieranfoley
1 Replies
HTML::FormatText::WithLinks(3)				User Contributed Perl Documentation			    HTML::FormatText::WithLinks(3)

NAME
HTML::FormatText::WithLinks - HTML to text conversion with links as footnotes SYNOPSIS
use HTML::FormatText::WithLinks; my $f = HTML::FormatText::WithLinks->new(); my $html = qq( <html> <body> <p> Some html with a <a href="http://example.com/">link</a> </p> </body> </html> ); my $text = $f->parse($html); print $text; # results in something like Some html with a [1]link 1. http://example.com/ my $f2 = HTML::FormatText::WithLinks->new( before_link => '', after_link => ' [%l]', footnote => '' ); $text = $f2->parse($html); print $text; # results in something like Some html with a link [http://example.com/] my $f3 = HTML::FormatText::WithLinks->new( link_num_generator => sub { return "*" x (shift() + 1); }, footnote => '[%n] %l' ); $text = $f3->parse($html); print $text; # results in something like Some html with a [*]link [*] http://example.com/ DESCRIPTION
HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. By default, it attempts to mimic the format of the lynx text based web browser's --dump option. METHODS
new my $f = HTML::FormatText::WithLinks->new( %options ); Returns a new instance. It accepts all the options of HTML::FormatText plus base a base option. This should be set to a URI which will be used to turn any relative URIs on the HTML to absolute ones. doc_overrides_base If a base element is found in the document and it has an href attribute then setting doc_overrides_base to true will cause the document's base to be used. This defaults to false. before_link (default: '[%n]') after_link (default: '') footnote (default: '[%n] %l') a string to print before a link (i.e. when the <a> is found), after link has ended (i.e. when then </a> is found) and when printing out footnotes. "%n" will be replaced by the link number, "%l" will be replaced by the link itself. If footnote is set to '', no footnotes will be printed. link_num_generator (default: sub { return shift() + 1 }) link_num_generator is a sub that returns the value to be printed for a given link number. The internal store starts numbering at 0. with_emphasis If set to 1 then italicised text will be surrounded by "/" and bolded text by "_". You can change these markers by using the "italic_marker" and "bold_marker" options. unique_links If set to 1 then will only generate 1 footnote per unique URI as oppose to the default behaviour which is to generate a footnote per URI. anchor_links If set to 0 then links pointing to local anchors will be skipped. The default behaviour is to include all links. skip_linked_urls If set to 1, then links where the text equals the href value will be skipped. The default behaviour is to include all links. parse my $text = $f->parse($html); Takes some HTML and returns it as text. Returns undef on error. Will also return undef if you don't pass it undef. Returns an empty string if passed an empty string. parse_file my $text = $f->parse_file($filename); Takes a filename and returns the contents of the file as plain text. Returns undef on error. error $f->error(); Returns the last error that occured. In practice this is likely to be either a warning that parse_file couldn't find the file or that HTML::TreeBuilder failed. CAVEATS
When passing HTML fragments the results may be a little unpredictable. I've tried to work round the most egregious of the issues but any unexpected results are welcome. Also note that if for some reason there is an a tag in the document that does not have an href attribute then it will be quietly ignored. If this is really a problem for anyone then let me know and I'll see if I can think of a sensible thing to do in this case. AUTHOR
Struan Donald. <struan@cpan.org> <http://www.exo.org.uk/code/> Ian Malpass <ian@indecorous.com> was responsible for the custom formatting bits and the nudge to release the code. Simon Dassow <janus@errornet.de<gt> for the anchor_links option plus a few bugfixes and optimisations Kevin Ryde for the code for pulling the base out the document. Thomas Sibley <trs@bestpractical.com> patches for skipping links that are their urls and to change the delimiters for bold and italic text.. COPYRIGHT
Copyright (C) 2003-2010 Struan Donald and Ian Malpass. All rights reserved. LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
perl(1), HTML::Formatter. perl v5.16.3 2010-12-09 HTML::FormatText::WithLinks(3)
All times are GMT -4. The time now is 01:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy