1,356 questions
Score of 0
1 answer
287 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 ...
Score of 0
2 answers
246 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'...
Score of 1
1 answer
157 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 ...
Score of 2
0 answers
185 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://...
Score of 1
1 answer
142 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 ...
Score of 1
1 answer
40 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 ...
Score of 1
2 answers
285 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" ...
Score of 1
2 answers
136 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 ...
Score of 0
2 answers
45 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) ...
Score of 0
0 answers
47 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 ...
Score of 1
1 answer
298 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 ...
Score of 0
1 answer
357 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('&...
Score of 0
0 answers
137 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 ...
Score of 2
1 answer
109 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, ...
Score of 1
1 answer
77 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 ...