61 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
41
views
Give a Spring WS dynamic-wsdl some style (using XSLT ?)
I'm currently trying to give my WSDLs some design by attaching a stylesheet to it, so that it could be readable by a technical but non-dev human being.
I was thinking I could add some XSLT to my ...
1
vote
1
answer
576
views
How to add LaTeX command definitions when compiling from RMarkdown to HTML
I have a RMarkdown file and a LaTeX snippet containing bunch of latex \newcommand calls I want to place in separate file (since I want to reuse them across multiple RMarkdown files). Here's a small ...
0
votes
1
answer
267
views
Should JS dynamically generate metadata/the whole page?
So I am going to have many pages that have a bunch of text in them, that a JS and CSS file will convert to a colored and everything webpage. I noticed that the text is usually going to be long, and ...
1
vote
1
answer
1k
views
How can I generate HTML by function and render it later in JS React
I'm strugling with generating periodic table in HTML from information given in this.periodicTable[] and rendering it later, as you can see in code below. How can I make it work?
Firstly i have made it ...
0
votes
1
answer
758
views
KeyError while generating an HTML page
I'm generating an HTML page from a simple template:
<div id="dateReference">
<h1 id="currentDate">Exploit automation completed on: {date_of_attack}</h1>
</div>
<div id="...
0
votes
0
answers
46
views
Django - Generate a pdf with html block text
I'm working on a project with Django (1.12) and python(2.7). I have a function which returns me in a string the content of an html page. I need to create the html page with this string, and after to ...
1
vote
0
answers
44
views
Linking between RMarkdown files in a package
I am looking to incorporate some html tutorial files (generated by RMarkdown) as part of a package that I am developing. My goal is to write a function that launches the tutorials and allows the user ...
0
votes
1
answer
400
views
React HTML point and click generator
I want users to be able to design a simple web page to render their content on a page on my site. Are there any projects (ideally react) out there currently that allow a point and click layout design ...
28
votes
7
answers
50k
views
How to generate a static html file from a swagger documentation?
I have created a Swagger documentation with a yaml file under:
api/swagger/swagger.yaml
Now I want to share a static HTML document with its definition, yet it was stated on the swagger project, that ...
-1
votes
1
answer
230
views
Is valid use toString for a table? [duplicate]
im using a toString for display a table:
public String toString(){
return(
"<table>"
+"<tr>"
+"<th> ID </th>"
+"<th> ...
0
votes
1
answer
2k
views
Generate HTML using Qt
I try to programmatically generate HTML using Qt 5.7 and C++.
I would like to avoid using simple text streaming since this does not check HTML syntax.
I tried to use QTextDocument and toHtml() but ...
0
votes
1
answer
4k
views
Summernote text editor not working in simple bootstrap page where html is generated
I added Summernote (a text editor for bootstrap) to a small page I am testing a form generator on. I cannot seem to be able to get the editor in my page at all, even if the examples are simple.
See ...
1
vote
1
answer
324
views
Controls.Add removing previous items from list
I am attempting to create a dynamic menu in my controller that i am then rendering to my view. What i am finding is that Controls.Add is removing items from my list and i end up only displaying the ...
0
votes
1
answer
3k
views
How to set a variable with pressing a button on an html file to the flask server route
I've become a bit confused in the middle of this, hope you can help me,
I have a text file similar to the one below:
./Video/SetUp
./Video/NewRecordings
./Video/NewRecordings/20160113_151920
./Video/...
0
votes
0
answers
232
views
HtmlHelper Generate Validation Markup in Controller
This is somehow related to The Question
I am using jquery unobtrusive validation. I have the following model
public class MyModel
{
[Required]
public int ID { get; set; }
[MinLength(2)]
...