Tagged Questions
The html-generation tag has no wiki summary.
8
votes
7answers
2k views
What is the best way to write HTML from Python?
I have figured out how to extract the information I need from a PDF file using PDFMiner in Python, and now I need to write out a modified version of the document with only the information that's ...
7
votes
5answers
127 views
Pros and cons of fully generating html using javascript
Recently, I have come up with some idea about how to improve the overall performance for
a web application in that instead of generating a ready-to-show html page from the web server, why not let it ...
7
votes
11answers
4k views
Save the document generated by javascript
Javascript can manipulate the document the browser is displaying, so the following:
<script>
...
3
votes
1answer
270 views
WPF application which outputs html
I'm creating a WPF (in c#) application that will create html files based on it's output. Is there a way to use the concept of an html 'view' (from the asp.net mvc) in a desktop application without ...
2
votes
1answer
33 views
What are the tools/sdks available to aid in HTML generation?
I want to write a C# program which can generate a series of HTML pages based on some data grabbed from an external database. Are there any .NET based SDK which enables me to do the HTML generation? ...
2
votes
5answers
169 views
HTML that's both server-side and javascript generated - how to combine?
I'm usually a creative gal, but right now I just can't find any good solution. There's HTML (say form rows or table rows) that's both generated javascript-based and server-sided, it's exactly the same ...
2
votes
1answer
51 views
Looking for a preprocessor to fill in static files
What I'm looking for would allow me to take something like this:
index.html.template:
<html>
<body>
<# include ("body.html.template") #>
</body>
</html>
...
1
vote
3answers
191 views
HtmlAgilityPack - how to grab <DIV> data in a large web page
I am trying to grab a data from a WEBPAGE , <DIV>particular class <DIV class="personal_info"> it has 10 similar <DIV>S and is of same Class "Personal_info" ( as shown in HTML ...
1
vote
2answers
442 views
HtmlAgilityPack: how to create indented HTML?
So, I'am generating html using HtmlAgilityPack and it's working perfectly, but html text is not indented. I can get indented XML however, but I need HTML. Is there a way?
HtmlDocument doc = new ...
1
vote
1answer
204 views
Template system or language for Python (primarily HTML)
I'm looking for a mature, easy-to-use, powerful, stand-alone, "beautiful" template system/language for Python. I'm primarily interested in generating (static) HTML from HTML sources (so ...
1
vote
6answers
383 views
What python html generator module should I use in a non-web application?
I'm hacking a quick and dirty python script to generate some reports as static html files.
What would be a good module to easily build static html files outside the context of a web application?
My ...
1
vote
2answers
92 views
HTML generation problem
I'm trying to generate a small part of the page using jquery which is generating in the wrong matter even though the code looks solid.
$('#stages').html("");
var stage = $("#stages");
var L = ...
1
vote
1answer
176 views
Multiple text nodes in Python's ElementTree? HTML generation
I'm using ElementTree to generate some HTML, but I've run into the problem that ElementTree doesn't store text as a Node, but as the text and tail properties of Element. This is a problem if I want to ...
1
vote
2answers
58 views
Any ideas what the best method would be to update a block of complex View-generated HTML via AJAX in MVC?
I have a bunch of code in my old Web Forms app I'm migrating to MVC. There are sections of various pages that need to have HTML generated by the view and then regenerated by an AJAX call. A lot of ...
1
vote
3answers
960 views
Easiest way to turn a list into an HTML table in python?
lets say I have a list like so:
['one','two','three','four','five','six','seven','eight','nine']
and I want to experiment with turning this data into a HTML table of various dimensions:
one ...
0
votes
1answer
23 views
PHP - DOMPDF 1 function works, another does not
I am working with DOMPDF currently, and I trying to work out why my PDF's are not being created correctly.
When I run the following code,
<?php if (!defined('BASEPATH')) exit('No direct script ...
0
votes
2answers
148 views
PHP - Generator of HTML [closed]
I am going to create a HTML generator based on PHP, this generator will help me to create some HTML file. The HTML file's content is based on the data input by user. Is there any PHP class or PHP ...
0
votes
1answer
76 views
Automatic HTML generation guidelines for maximum CSS stylability
I'd like to ask about your experience with automatic HTML generation and what should coders consider to reach a maximum stylability? Please add good guidelines and please explain the reason for them.
...
0
votes
1answer
32 views
convert PDF to HTM
I want to convert my PDF files into HTML(not looking for any software though). I dont have any idea. How to read the PDF then taking care of font size, styling, line spacing, character spacing, How ...
0
votes
5answers
119 views
Generate HTML given a text file organized with carriage returns in PHP
I'd like to be able to take in a file in PHP
**example_file.txt**
United States
Canada
-----------------------
Albania
Algeria
American Samoa
Andorra
Angola
and wrap these individual linebreaks in ...
0
votes
4answers
202 views
HTML generation in Python
What's the easiest way to quickly create some simple HTML in Python? All I've found so far are complex templating systems or classes for HTML generation with APIs that seem much heavier than what I ...
0
votes
1answer
981 views
How can I generate HTML tables in Perl?
I need to create a 2 tables in HTML format. Each has 5 rows:
1st Table
1st row has FRUITS in it, occupying all columns
2nd row has January(month), occupying all columns
3rd row has names of some 6 ...
0
votes
1answer
446 views
How can i format aspx-markup as html to show it on webpage
i've been using C. Coller's excellent CopyAsHtml-Visual Studio addin for copying C# code as html to a webpage.
Now, i started to wonder if there exists a similar tool for converting the aspx-markup ...
0
votes
4answers
108 views
Automatic HTML Cache generation tool
Are there any tools that can automatically generate static HTML pages for my currently dynamic website. i.e. generate a unique HTML page for each unique url of my dynamic website.
It would be great ...
0
votes
5answers
234 views
Which Method Do You Find More Readable To Output Dynamic HTML?
I'm imagining that this will come down to personal preference but which way would you go?
StringBuilder markup = new StringBuilder();
foreach (SearchResult image in Search.GetImages(componentId))
{
...
-1
votes
3answers
80 views
system() and shell_exec() methods
I am working with a WAMP installation (on Windows).
Do the methods system() and shell_exec() only work on Linux machine or are they available on Windows, too? I am trying these methods in Windows but ...