18,668 questions
0
votes
1
answer
46
views
Create clickable target in contenteditable div
I'm trying to change a variable when I click on specific text in a content editable div, trying to simulate a hyperlink.
When I console.log the target on Noteblock events and use an if statement to ...
-1
votes
1
answer
73
views
How do I make an internal link without it opening another page?
Soo i'm working on this project for class and I made an internal link. But instead of the link taking my to the section I want it to take me to, it opens another tab. Like I did the id= but it still ...
0
votes
0
answers
61
views
Web Intelligence - Linking 2 different fields at design level
I am using SAP Web Intelligence to pull data.
This problem is harder than it looks.
For context I want to link two queries (Query1 and Query 2) at the design level (not the report level) on a given ...
Advice
0
votes
3
replies
82
views
Opening an external hyperlink in a Current browser session
Admittedly this is a (probably) a very far-fetched, even dumb, question; because the feature I am thinking of would probably be rife with abuse if it existed. If I am on a website URL -- let's say ...
-1
votes
0
answers
60
views
SessionStorage copied to new tab when using <a> with "target=_blank"+"rel=opener", but not when using "Open link in new tab" by right-clicking
I have data stored in sessionStorage and a hyperlink which I want to be able to share it with even if user opens in a new tab.
If I set "target" attribute to "_blank" and "rel&...
1
vote
1
answer
61
views
Yocto SDK portable with relative links
We have a Yocto project (mickledore) to create a custom Linux for an ARM A7 system. To be able to write code for this target, we also created the SDK. Inside local.conf we have:
SDKMACHINE = "...
0
votes
1
answer
55
views
Jupyter Markdown hyperlink with <style> does not show color
Can someone help explain what is going on, and how to fix it so I don't have too put a <span> in every link.
I am actually writing some .md files and using Juypter to display it in its final ...
2
votes
1
answer
71
views
Trying to append hyperlinks (to bookmarks) given a selection in Word
I've got a selection of text highlighted that I want to convert into links (to already created bookmarks that conform to a pattern) in MS Word (Mac if it matters). Right now I'm just trying to append ...
0
votes
1
answer
77
views
Jump to single link from Python traceback [closed]
I have a Python file open in Visual Studio Code, and I run the file in the integrated terminal. When it hits a problem in my code (problems? in MY code???!), Python gives me the usual Traceback, ...
1
vote
1
answer
128
views
Can JavaScript add a hyperlink to a word on a page, without privileged security settings or other programs? [duplicate]
I am trying to automate some functionality in Acrobat PDFs. I use Adobe Acrobat (version shows 2025.001.20693, 64 bit). I prepare many reports that have words in them on which I have to set hyperlinks ...
0
votes
0
answers
42
views
LinkedIn Events API returning 500 error when creating a personal online event. How do I make it work?
I am working on building an integration with the LinkedIn Events API. As part of testing, I am trying to create a personal online event using the Create Event endpoint, but the API keeps returning a ...
0
votes
1
answer
115
views
Selecting Hyperlinks
Column A has a list, some of the items in the list are Hyperlinks.
How can I separate them ?
e.g. in Column B, put in this "formula" in each Cell :-
=If(IsHyperlink(A72),A72,"zzzz Not a ...
0
votes
0
answers
65
views
links in HTML text in jspdf
I'm using jspdf to render text that I get from a text editor (which means the text has HTML tags and styles and classes), i'm using the method .html
when the note is basic text and it's working fine, ...
0
votes
0
answers
561
views
Docling Hyperlink Extraction Issue : I am using docling to convert pdf to markdown file, but hyperkink not preserved in markdown file after conversion
I’m currently using the Docling library in Python to extract text from PDF files. While it works well for retrieving visible text, I’ve noticed an issue with hyperlinks. Specifically, the library only ...
1
vote
2
answers
144
views
VBA macro - problem with Application.ScreenUpdating
I have a problem with ScreenUpdating which I want to disabled.
I have a power query connection which is refreshing. I connect excel files from folder in power query , after that I disabled background ...
0
votes
0
answers
71
views
Hyperlink formula not working if the range goes beyond 10 cells
=HYPERLINK("mailto:" & TEXTJOIN(",", TRUE, M1:M32), "Email All") this formula is not working unless I make the range to "M1:M10" Why? Im trying to combine ...
1
vote
1
answer
94
views
How do I convert a newly generated Google Apps Script url into a hyperlink that is also displayed within the Google Apps Script?
The following Google Apps Script runs with absolute perfection. I prefer the newly generated Google Forms url be converted into a hyperlink to avoid copying and pasting, but I am not sure how and ...
0
votes
1
answer
57
views
Style individual `RouterLink`s
Suppose a simple Vue.js component:
<template>
<RouterLink to="#">AAA</RouterLink>
<RouterLink to="#">BBB</RouterLink>
</template>
I cannot ...
2
votes
2
answers
70
views
Jekyll generates URLs with 0.0.0.0
I'm running Jekyll 3.10.0 inside Docker using the following Docker Compose setup:
services:
jekyll-site:
image: jekyll-site
build: .
volumes: [ .:/usr/src/app ]
ports: [ 4000:4000 ]
...
0
votes
0
answers
49
views
How to post a table with hyperlinked text in the cells for a slack canvas page using Slack API SDK?
I am trying to post a table to a slack canvas page, with cells that contain hyperlinked text (simple status report), btu I can't get the content formatted properly for the canvases_edit call.
I post ...
0
votes
0
answers
77
views
Internal hyperlinks inside a jupyter notebook work normally but not when hosted on github
I am trying to host a jupyter notebook on my github page. The notebook has a table of contents at the top that internally with internal hyperlinks to different parts of the notebook and back to the ...
0
votes
1
answer
54
views
C# OfficeOpenXml get Excel hyperlink url
In my Excel, I have some hyperlink url like
http://website/#parameter=aaa¶meter=bbb
When I use
myWorksheet.Cells[i, i].Hyperlink.AbsoluteUri
it only gets the value http://website/.
I want ...
-2
votes
1
answer
73
views
Why does my stylesheet link not find my CSS file [closed]
I know this question is basic, but it is very much a problem. It does not work, even though it is in a sub folder, as shown in the image. The styles doesn't show.
I typed:
<link rel="...
0
votes
0
answers
18
views
How to add a link in each first level header to go back to TOC in epub generated from markdown in pandoc
Very similar question to this but the output format is epub.
How can I link back to TOC in an epub generated from markdown?
I generate the toc using --toc option, and the lua-filter does add an arrow ...
0
votes
1
answer
43
views
VBA - Worksheet_FollowHyperlink - clear filters then set new filter
I need to create multiple hyperlinks in a summary page which link to a filtered view of my master sheet.
I have created a hyperlink in each cell to itself and then have used the following ...
1
vote
1
answer
102
views
iOS NSDataDetector with type NSTextCheckingResult.CheckingType.link picks up trailing </p> as part of the Link
I have various strings which actually contain some html like content in them. The links in this do not have surrounding <a> and </a> tags. So, I need to find those links and manually add ...
0
votes
1
answer
76
views
Is there a way to make Google Chrome open links with certain protocols in a new window?
I am using Google Chrome and Google Business suite for my email. I have registered a custom protocol handler for all mailto links in the javascript console from the business suite page using the ...
1
vote
1
answer
61
views
Bootstrap Carousel Indicators with Nested Hyperlink
I am using the Bootstrap carousel component with some extra function. I expanded the indicators from simple lines to also contain a description and a link for more info. Because the indicators link to ...
0
votes
0
answers
42
views
Hyperlink/bookmarks not working with remote repository
I have a service with a dependency to a document generation library. The library uses iText pdfHTML to convert HTML to PDF. Inside the document, the Table of contents contains links for jumping to ...
0
votes
0
answers
484
views
How do I deep link to iOS Settings Page?
I'm trying to figure out how to deep link to a specific settings page within the iOS Message app settings. Here is the page.
Settings > Apps > Messages > Unknown & Spam
I can only get as ...
0
votes
0
answers
55
views
In Eclipse CDT how to create clickable function links in C comments?
I’m working on a C project in Eclipse CDT and need to create clickable links between functions in comments (without leaving the editor). For example:
c
/* How to make this link clickable to jump to ...
0
votes
1
answer
94
views
Create a button on Toolbar in Storybook
This is my Preview > globalTypes:
globalTypes: {
feedback: {
description: 'Answer our survey',
defaultValue: false,
toolbar: {
title: 'Survey',
...
1
vote
2
answers
376
views
When adding target="_blank" to a html link, is it still necessary to add rel="noreferrer noopener" in 2025?
Just checking as the rel="noreferrer noopener" part is about security, but I got the reason to add it from some very old posts. I thought maybe it was no longer necessary?
I am especially ...
0
votes
1
answer
91
views
Embedding dynamic URL ({{{URL}}}}) into HTML email template
I am working on a HTML email template on Absorb LMS system that notifies learners to complete their course.
I would like to embed the URL of the course inside a button format that allows learners to ...
0
votes
1
answer
89
views
XML Links to SVG
I need to be able to create a link within the XML code that will link to an SVG ID tag. I have been able to build SVGs with hotspots, ID tags, etc... that allows the user to click within the SVG and ...
-4
votes
1
answer
292
views
Html syntax to add a website link to a craigslist post
Curious to know why the acceptable syntax in html for adding a website link fails when attempting to add an html website link to a craigslist ad when there are posts created by others with functional ...
0
votes
2
answers
54
views
Supplement existing links
I have those code in one HTML document:
<div class="linksblock">
<a link href="www.google.com/1">link 1</a>
<a link href="www.google.com/2">link 2&...
0
votes
0
answers
40
views
Apache URL rewrite that correctly maps HTML links to sub URL
I have a website with this simple configuration:
<Directory /websites/>
Options -Indexes -FollowSymLinks +Includes
AllowOverride All
Order deny,allow
Require all granted
</...
0
votes
0
answers
72
views
How to download a document from Express-Node.js backend through a HTML hyperlink (<a>) on the frontend?
I know I can download static files from frontend with
<a href="/path/fileName" download>MyDocument</a>
, but I need to download dynamic files that can be uploaded and deleted by ...
0
votes
2
answers
54
views
How to get MS Word 2016 index switch for page number hyperlinks to work
In MS Word 2016, alt-F9 shows the switches for the index. {INDEX \c "3" \z "1033" \h "A"} The index switch \h "A" should cause the right-aligned index page ...
0
votes
1
answer
182
views
How do I create clickable hyperlinks from markdown link format in a Tkinter Text widget?
I'm working on a Tkinter application where I display text in a Text widget. The incoming text sometimes contains markdown-style links in the following format:
[CNN Travel](https://www.cnn.com/travel/...
0
votes
1
answer
2k
views
How to customise start and end times on YouTube videos? (2025)
I am trying to customise the start and end times of YouTube videos so that, for example, when people click the links the video starts from 5s and ends at 10s.
Most tutorials say that inserting a video ...
0
votes
2
answers
59
views
How would I add a URL hyperlink to text within a flow chart symbol with Graphviz?
I have created a very basic Graphviz flow chart and want to add hyperlinks for my users to click on text within a box to jump to a wiki section with this data (e.g. Use SQL CODE to gather data...where ...
-1
votes
1
answer
81
views
How can I give a Next.JS (app router) <Link> component some extra behavior before it navigates?
My use case can be described like this:
I have an app with a sidebar.
The sidebar has links to functionality related to each particular "item".
I have a way that can record which "item&...
0
votes
1
answer
55
views
Wordpress show post link as plain text if post not published
How can I cause a link in WordPress (currently 6.7.2) to display as plain text if the target post is not published?
I know how to create hyperlinks and how to create a permalink to a not-published ...
0
votes
0
answers
52
views
How can I create a CSV with hyperlinked text that uses another cell to populate the link?
I have to import a .csv to my website to create a table. The table should have the following cells in one row...
[Model] [Name] [PDF + file link] [IES + file link] [LDT + file link]
For the links I ...
1
vote
1
answer
57
views
How to add an hyperlink to the "sold out" message on Woocommerce single product page?
I'm new to php and css, and am trying to see if certain things are possible using them.
In this case, I'm trying to customize my Woocommerce single product page (WP free Astra theme).
I was able to ...
0
votes
0
answers
43
views
Tabulator: How to export an image and a hyperlink as XLSX download?
I have an image in my Tabulator table. I want to download the table into Excel, including the image. How can I put the images into Excel cells from Tabulator?
If I cannot export the images themselves, ...
0
votes
3
answers
76
views
How to create a macro in MS Word that will add angle brackets around each hyperlink?
This is my first question, so please let me know if the format is wrong in any way.
I am working for a publishing house that, as part of its style guide, requires all URLs to appear within angle ...
0
votes
1
answer
90
views
links, CSS and icon require absolute paths in HTML (relative paths not working)
I'm aware that my question is a basics, but still I'm struggling.
I don't understand why my link <a href="Articles/every_ethic_without_dead_end_is_utilitarian.html"> doesn't work (Your ...