Sponsored Content
Full Discussion: HTML down, CSS help, ahhhh
Top Forums Web Development HTML down, CSS help, ahhhh Post 302582791 by N-Training on Sunday 18th of December 2011 09:13:14 AM
Old 12-18-2011
thanks

Smilie see what to do now
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Safe_mode !!! Ahhhh

Hi, Can anyone please please, help me disable LOCAL value safe_mode. In the php.ini safe_mode = Off When I launch, a phpinfo page, LOCAL value remains on and MASTER remains off. I have searched elsewhere and have tried to add a line on code in the httpd.conf , restart Apache sitll no... (5 Replies)
Discussion started by: peachesboy
5 Replies

2. Web Development

On Css

<html> <head> <style> div.box {width: 300px; height: 200px; padding: 30px; font: 46 pt times new roman;} </style> </head> <body> <div class="box" style=" filter": progid:DXImagetransform.Microsoft.Alpha (Opacity=100, FinishOpacity=0, Style=1, StartX=0, FinishX=0,... (0 Replies)
Discussion started by: N-Training
0 Replies

3. Web Development

CSS frameworks

I have been reading up on CSS frameworks, to see if it could be useful for an intranet that I am helping to build, but the true purpose does not become clear to me. What circumstances would the deployment of a CSS framework be useful in? What does a CSS framework do that a CMS template cannot do? (1 Reply)
Discussion started by: figaro
1 Replies

4. Web Development

Optimizing JS and CSS

Yes. Got few suggestions. - How about minifying resources - mod_expires - Service workers setup https://www.unix.com/attachments/web-programming/7709d1550557731-sneak-preview-new-unix-com-usercp-vuejs-demo-screenshot-png (8 Replies)
Discussion started by: Akshay Hegde
8 Replies

5. Web Development

Web development learning thread(Javascript, HTML, CSS, angular, vue.js).

Hello All, After getting inspired from Neo, I have started a bit of JS learning these days. Whenever I learn something I will try to post it here(as of now my learning is NOT exactly bookish where I am going chapter by chapter etc, it could be more like small-small project vice kind of), I... (25 Replies)
Discussion started by: RavinderSingh13
25 Replies
HTML::WikiConverter::Normalizer(3pm)			User Contributed Perl Documentation		      HTML::WikiConverter::Normalizer(3pm)

NAME
HTML::WikiConverter::Normalizer - Convert CSS styles to (roughly) corresponding HTML SYNOPSIS
use HTML::TreeBuilder; use HTML::WikiConverter::Normalizer; my $tree = new HTML::TreeBuilder(); $tree->parse( '<p><font style="font-style:italic; font-weight:bold">text</font></p>' ); my $norm = new HTML::WikiConverter::Normalizer(); $norm->normalize($tree); # Roughly gives "<p><font><b><i>text</i></b></font></p>" print $tree->as_HTML(); DESCRIPTION
HTML::WikiConverter dialects convert HTML into wiki markup. Most (if not all) know nothing about CSS, nor do they take it into consideration when performing html-to-wiki conversion. But there is no good reason for, say, "<font style="font-weight:bold">text</font>" not to be converted into '''text''' in the MediaWiki dialect. The same is true of other dialects, all of which should be able to use CSS information to produce wiki markup. The issue becomes especially problematic when considering that several WYSIWYG HTML editors (e.g. Mozilla's) produce this sort of CSS-heavy HTML. Prior to "HTML::WikiConverter::Normalizer", this HTML would have been essentially converted to text, the CSS information having been ignored by "HTML::WikiConverter". "HTML::WikiConverter::Normalizer" avoids this with a few simple transformations that convert CSS styles into HTML tags. METHODS
new my $norm = new HTML::WikiConverter::Normalizer(); Constructs a new normalizer normalize $norm->normalize($elem); Normalizes $elem and all its descendents, where $elem is an HTML::Element object. SUBCLASSING
The following methods may be useful to subclasses. handlers my $handlers = $self->handlers; Class method returning reference to an array of handlers used to convert CSS to HTML. Each handler is a hashref that specifies the CSS properties and values to match, and the HTML tags and attributes the matched properties will be converted to. The "type", "name", "value", and "tag" keys may be used to match an element's property or attribute. "type" may be either "css" if matching a CSS property (in which case "name" must contain the name of the property, and "value" must contain the property value to match) or "attr" if matching an HTML tag attribute (in which case "name" must contain the name of the attribute, and "value" must contain the attribute value to match). "value" may be a string (for an exact match), regex (which will be used to match against the element's property or attribute value), coderef (which will be passed the property or attribute value and is expected to return true on match, false otherwise), or "*" (which matches any property or attribute value). A tag or list of tags can also be matched with the "tag" key, which takes either a string or an arrayref. To specify what actions the handler will take, the "new_tag", "new_attr", and "normalizer" keys are used. "new_tag" is required and indicates the name of the tag that will be created. "attribute" is optional and indicates the name of the attribute in the new tag that will take the value of the original CSS property. If a coderef is given as the "normalizer", it will be passed the value of the property/attribute and should return one suitable to be assigned to the new tag attribute. SEE ALSO
CSS AUTHOR
David J. Iberri, "<diberri@cpan.org>" BUGS
Please report any bugs or feature requests to "bug-html-wikiconverter at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-WikiConverter>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. COPYRIGHT &; LICENSE Copyright 2006 David J. Iberri, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2009-05-12 HTML::WikiConverter::Normalizer(3pm)
All times are GMT -4. The time now is 03:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy