Skip to content

Commit 3843e1e

Browse files
committed
Hyper link code removed
1 parent 2127a38 commit 3843e1e

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

_posts/python/2025-10-04-python-docx.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ P_font = P.runs[0].font
284284
P_font.underline = True # Underline text
285285
P_font.underline = WD_UNDERLINE.DOUBLE # Underline style
286286

287-
288287
document.add_page_break()
289288
document.add_heading("Text Formatting", level=2)
290289

@@ -322,7 +321,6 @@ P.add_run(" Adding 16 font size Text Here.").font.size = Pt(16)
322321
P = document.add_paragraph("This is paragraph with Subtle Emphasis Text.")
323322
P.add_run(" Adding text with subtle emphasis.").style = "Subtle Emphasis"
324323

325-
326324
# Apply Multiple Formattings
327325
P = document.add_paragraph()
328326
Line = P.add_run("This is paragraph with Bold, Italic and Underlined Text.")
@@ -358,11 +356,6 @@ quote = document.add_paragraph(
358356
"but in rising every time we fall.")
359357
quote.style = "Intense Quote"
360358

361-
# Add Hyperlink
362-
document.add_heading("Hyperlink", level=3)
363-
P = document.add_paragraph("This is a paragraph with a ")
364-
365-
366359
# Add Page Break
367360
document.add_page_break()
368361

0 commit comments

Comments
 (0)