1,357 questions
0 votes
1 answer
85 views
Page break after re-setting margin in Typst
Hi there nice people from SO Problem I am trying to create a template in typst. I'd like to stylize my title section with a big block of colored background extending beyond the margin (see attached ...
0 votes
2 answers
176 views
User script append to DOM without having to reload page
I am working on a user script (I'm using Tampermoney as my user script manager) to append a dynamic Rotten Tomatoes link to a Jellyfin movies/series page. It works when I manually reload on the title'...
1 vote
1 answer
84 views
Correct semantic markup for a quote's author: <cite> vs. <span> [closed]
Based on the HTML examples provided, is it considered better practice to mark up an author's name with the cite tag or a span tag? I've read that the cite tag is intended for referencing a work (like ...
2 votes
0 answers
100 views
Hyperlinks in PlantUML diagram on Gitlab not working, presented as a png graphic
These are the steps I have used to reach this problem. Create this test plantuml file: @startuml actor User rectangle "web" { usecase uc01 as "Use Case 1 - Start ---- [[https://...
1 vote
1 answer
124 views
Image size inconsistency between GitHub and PyPI in README.md
I created some simple console games in Python(Oyna Project) and took screenshots of each game to showcase them in the README.md file. I wanted to display these images in a table format both on GitHub ...
1 vote
1 answer
34 views
How can I incorporate pre-existing html into the output of a react node?
I have a database full of blog entries written over the past 26 years. The blog code is a php script that pulls entries from the db and includes them inline in the page it generates. I'm learning to ...
0 votes
2 answers
168 views
Is it possible to change the text content displayed in an SVG image by setting specific data-* attributes in the html <svg> tag?
For example, to render the variously changing datetimes of a yearly-repeating event that lasts several days, having a re-usable single svg image that can take a data-datetime="yyyy-mm-dd" ...
1 vote
2 answers
115 views
Why there is no add to calendar option pop up when I added json-ld markup for reservation
I am testing schema.org Json-ld markup for email using self mailing as mentioned, This is the sample schema I'm using along with html content sent in mail. I'm sending mail using gmail smtp, and ...
0 votes
2 answers
43 views
How to change plurality depending on array length
I need to automatically change the plurality of the Student(s), Supervisor(s) and Co-Supervisor(s) depending on the array length. Note the authors array will have to contain atleast one entry (string) ...
0 votes
0 answers
34 views
What is the best way to add a Quine to my resume?
My resume is currently written in latex, but that isn't essential. I had the idea a while ago of adding a QR code to my resume which when scanned would generate the exact latex code for the entire ...
1 vote
2 answers
248 views
Handling Images in XFDF for PDF Annotations
I'm working on a project where we need to manage PDF annotations using XFDF in a IOS mobile app. Currently, the images included in the annotations are encoded as base64 strings, which significantly ...
0 votes
1 answer
217 views
How do I markup a flash message in Flask?
I was running a Flask application using Python 3.9.13, Flask 1.1.2, Jinja2 2.11.3, and MarkupSafe 1.1.1, using a Redis (3.5.3) as my session store. When I created a flash message with flash(Markup('&...
0 votes
0 answers
120 views
How to Implement Markup and Annotation Tools for Drawings in a Flutter Application?
Background: We are developing a project folder management feature in our Flutter application, specifically focusing on handling drawings. This includes implementing markup and annotation tools for ...
2 votes
1 answer
87 views
Autodesk Forge Markup - Simple line, possible utilising existing Polygon, Arrow or Rectangle
We're currently looking to implement a simple straight line feature within document markup. A straight line can be drawn currently by utilising the polygon tool and double clicking at the first point, ...
1 vote
1 answer
56 views
Markup file slug in .NET
I am using Markdig nuget package right now to read my markup files and convert them to HTML string content = File.ReadAllText(mdFilepath); string? result = Markdown.ToHtml(content, pipeline); But ...