Sponsored Content
Top Forums Shell Programming and Scripting Other way aside from putting more PIPES (|) Post 302918204 by kenshinhimura on Monday 22nd of September 2014 10:03:31 AM
Old 09-22-2014
look goods to me.. Smilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Putting pC on network

How do I put a my PC with linux 7.0 on a class B network. Can someone give me info or text that will guide me? (1 Reply)
Discussion started by: Rush
1 Replies

2. Programming

Putting breakpoint on core

Any one tried puting breakpoint while debugging a core file? I have been using a gdb for running it.. But unsuccessful to put a breakpoint before executing it. Any sugestion or tool for doing it would be welcomed.. Thanks :) (0 Replies)
Discussion started by: jyotipg
0 Replies

3. Filesystems, Disks and Memory

PIPEs and Named PIPEs (FIFO) Buffer size

Hello! How I can increase or decrease predefined pipe buffer size? System FreeBSD 4.9 and RedHat Linux 9.0 Thanks! (1 Reply)
Discussion started by: Jus
1 Replies

4. UNIX for Dummies Questions & Answers

Putting Wallpaper on the Desktop

How do I put wallpaper from the internet on the Unix desktop? For example, I want to know how to perform the same operation as "right click-> Set as Wallpaper" on a graphics on a web page, in Windows. Thanks! :rolleyes: (3 Replies)
Discussion started by: pireifej
3 Replies

5. Shell Programming and Scripting

Putting a character between two other characters?

I need to separate Pascal style identifiers (TheyLookLikeThis) into words separated by an underscore (_). I've tried sed 's//&_&/' but this won't work (obviously). I'd love some help. (4 Replies)
Discussion started by: Ilja
4 Replies

6. UNIX for Dummies Questions & Answers

putting Linux on an old windows PC

Hello, I was just reading around these forums when I had an idea, without being able to really answer my question for myself due to some circumstances, so hopefully someone can give me a hand. I have an old desktop PC that has served me very well. I got an Asus G73JH though, so I mostly used the... (2 Replies)
Discussion started by: Patriots12
2 Replies

7. Programming

putting numbers behind eachother

I want to make a program where you have to insert binary numbers like this: do { iBinary = getche(); }while(iBinary == 1 || iBinary == 0); after you get the numbers I want them to be placed behind eachother so you will get: input: 1 1 0 1 output: 1101 (7 Replies)
Discussion started by: metal005
7 Replies

8. Shell Programming and Scripting

putting two images together

Hi, I generated many figures in .png format (approximately 120). Right now I need to pair the figures on a single page so that the files with the same file name (i.e. jack) that end with .matrix.png are placed on the left and .cdt.png is on the right (so jack.matrix.png with jack.cdt.png... (6 Replies)
Discussion started by: kylle345
6 Replies

9. UNIX for Dummies Questions & Answers

Putting $$ before filename

Hello , I am searching a directory for a file and have to assign the filename to a variable . The variable must have form $$filename So my code is echo "'$$filename='`ls -lrt *PreMatch*.csv| head -1 | nawk '{print $9}'`" however $$ is converting to a number . How could I make it $$... (3 Replies)
Discussion started by: Pratik4891
3 Replies

10. Hardware

Putting an old hd in a new computer

What are the steps you need to take when you put an old HD in a new computer? I just did this. Every time it makes it to the windows boot screen then restarts. I have a bunch of old engineering software that is not compatible with the newer versions of windows. I figured this out after I bought... (6 Replies)
Discussion started by: cokedude
6 Replies
Text::MultiMarkdown(3pm)				User Contributed Perl Documentation				  Text::MultiMarkdown(3pm)

NAME
Text::MultiMarkdown - Convert MultiMarkdown syntax to (X)HTML SYNOPSIS
use Text::MultiMarkdown 'markdown'; my $html = markdown($text); use Text::MultiMarkdown 'markdown'; my $html = markdown( $text, { empty_element_suffix => '>', tab_width => 2, use_wikilinks => 1, } ); use Text::MultiMarkdown; my $m = Text::MultiMarkdown->new; my $html = $m->markdown($text); use Text::MultiMarkdown; my $m = Text::MultiMarkdown->new( empty_element_suffix => '>', tab_width => 2, use_wikilinks => 1, ); my $html = $m->markdown( $text ); DESCRIPTION
Markdown is a text-to-HTML filter; it translates an easy-to-read / easy-to-write structured text format into HTML. Markdown's text format is most similar to that of plain text email, and supports features such as headers, *emphasis*, code blocks, blockquotes, and links. Markdown's syntax is designed not as a generic markup language, but specifically to serve as a front-end to (X)HTML. You can use span-level HTML tags anywhere in a Markdown document, and you can use block level HTML tags ("<div>", "<table>" etc.). Note that by default Markdown isn't interpreted in HTML block-level elements, unless you add a "markdown=1"" attribute to the element. See Text::Markdown for details. This module implements the MultiMarkdown markdown syntax extensions from: http://fletcherpenney.net/multimarkdown/ SYNTAX
For more information about (original) Markdown's syntax, see: http://daringfireball.net/projects/markdown/ This module implements MultiMarkdown, which is an extension to Markdown.. The extension is documented at: http://fletcherpenney.net/multimarkdown/ and borrows from php-markdown, which lives at: http://michelf.com/projects/php-markdown/extra/ This documentation is going to be moved/copied into this module for clearer reading in a future release.. OPTIONS
MultiMarkdown supports a number of options to it's processor which control the behaviour of the output document. These options can be supplied to the constructor, on in a hash with the individual calls to the markdown method. See the synopsis for examples of both of the above styles. The options for the processor are: use_metadata Controls the metadata options below. strip_metadata If true, any metadata in the input document is removed from the output document (note - does not take effect in complete document format). empty element suffix This option can be used to generate normal HTML output. By default, it is ' />', which is xHTML, change to '>' for normal HTML. img_ids Controls if <img> tags generated have an id attribute. Defaults to true. Turn off for compatibility with the original markdown. heading_ids Controls if <hX> tags generated have an id attribute. Defaults to true. Turn off for compatibility with the original markdown. bibliography_title The title of the generated bibliography, defaults to 'Bibliography'. tab_width Controls indent width in the generated markup, defaults to 4 disable_tables If true, this disables the MultiMarkdown table handling. disable_footnotes If true, this disables the MultiMarkdown footnotes handling. disable_bibliography If true, this disables the MultiMarkdown bibliography/citation handling. disable_definition_lists If true, this disables the MultiMarkdown definition list handling. A number of possible items of metadata can also be supplied as options. Note that if the use_metadata is true then the metadata in the document will overwrite the settings on command line. Metadata options supported are: document_format use_wikilinks base_url METADATA
MultiMarkdown supports the concept of 'metadata', which allows you to specify a number of formatting options within the document itself. Metadata should be placed in the top few lines of a file, on value per line as colon separated key/value pairs. The metadata should be separated from the document with a blank line. Most metadata keys are also supported as options to the constructor, or options to the markdown method itself. (Note, as metadata, keys contain space, whereas options the keys are underscore separated.) You can attach arbitrary metadata to a document, which is output in HTML <META> tags if unknown, see t/11document_format.t for more info. A list of 'known' metadata keys, and their effects are listed below: document format If set to 'complete', MultiMarkdown will render an entire xHTML page, otherwise it will render a document fragment css Sets a CSS file for the file, if in 'complete' document format. title Sets the page title, if in 'complete' document format. use wikilinks If set to '1' or 'on', causes links that are WikiWords to automatically be processed into links. base url This is the base URL for referencing wiki pages. In this is not supplied, all wiki links are relative. METHODS
new A simple constructor, see the SYNTAX and OPTIONS sections for more information. markdown The main function as far as the outside world is concerned. See the SYNOPSIS for details on use. BUGS
To file bug reports or feature requests please send email to: bug-Text-Markdown@rt.cpan.org Please include with your report:(1) the example input; (2) the output you expected; (3) the output Markdown actually produced. VERSION HISTORY
See the Changes file for detailed release notes for this version. AUTHOR
John Gruber http://daringfireball.net/ PHP port and other contributions by Michel Fortin http://michelf.com/ MultiMarkdown changes by Fletcher Penney http://fletcher.freeshell.org/ CPAN Module Text::MultiMarkdown (based on Text::Markdown by Sebastian Riedel) originally by Darren Kulp (http://kulp.ch/) This module is maintained by: Tomas Doran http://www.bobtfish.net/ THIS DISTRIBUTION
Please note that this distribution is a fork of Fletcher Penny's MultiMarkdown project, and it *is not* in any way blessed by him. Whilst this code aims to be compatible with the original MultiMarkdown (and incorporates and passes the MultiMarkdown test suite) whilst fixing a number of bugs in the original - there may be differences between the behaviour of this module and MultiMarkdown. If you find any differences where you believe Text::MultiMarkdown behaves contrary to the MultiMarkdown spec, please report them as bugs. SOURCE CODE
You can find the source code repository for Text::Markdown and Text::MultiMarkdown on GitHub at <http://github.com/bobtfish/text-markdown>. COPYRIGHT AND LICENSE
Original Code Copyright (c) 2003-2004 John Gruber <http://daringfireball.net/> All rights reserved. MultiMarkdown changes Copyright (c) 2005-2006 Fletcher T. Penney <http://fletcher.freeshell.org/> All rights reserved. Text::MultiMarkdown changes Copyright (c) 2006-2009 Darren Kulp <http://kulp.ch> and Tomas Doran <http://www.bobtfish.net> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name "Markdown" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. This software is provided by the copyright holders and contributors "as is" and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage. perl v5.12.4 2011-04-26 Text::MultiMarkdown(3pm)
All times are GMT -4. The time now is 02:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy