remove redundant dedicated h1-h6 & pre .gd & .tscn

This commit is contained in:
Face
2025-07-30 21:06:40 +03:00
parent ae733d4121
commit 2fd69068cd
22 changed files with 7 additions and 209 deletions

View File

@@ -1,6 +0,0 @@
extends Control
@onready var rich_text_label: RichTextLabel = $RichTextLabel
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://fxad8ggthycp

View File

@@ -1,6 +0,0 @@
extends Control
@onready var rich_text_label: RichTextLabel = $RichTextLabel
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://bdq7nrg2l36nh

View File

@@ -1,6 +0,0 @@
extends Control
@onready var rich_text_label: RichTextLabel = $RichTextLabel
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://cnlm4o4aul6um

View File

@@ -1,6 +0,0 @@
extends Control
@onready var rich_text_label: RichTextLabel = $RichTextLabel
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://j68a278yusxa

View File

@@ -1,6 +0,0 @@
extends Control
@onready var rich_text_label: RichTextLabel = $RichTextLabel
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://648taty6aixn

View File

@@ -1,6 +0,0 @@
extends Control
@onready var rich_text_label: RichTextLabel = $RichTextLabel
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://tv6sv6og67q6

View File

@@ -1,5 +0,0 @@
class_name Pre
extends VBoxContainer
func init(_element: HTMLParser.HTMLElement) -> void:
pass

View File

@@ -1 +0,0 @@
uid://8mam5rvtx72x

View File

@@ -10,15 +10,15 @@ const AUTO_SIZING_FLEX_CONTAINER = preload("res://Scripts/AutoSizingFlexContaine
const P = preload("res://Scenes/Tags/p.tscn")
const IMG = preload("res://Scenes/Tags/img.tscn")
const SEPARATOR = preload("res://Scenes/Tags/separator.tscn")
const PRE = preload("res://Scenes/Tags/pre.tscn")
const PRE = P
const BR = preload("res://Scenes/Tags/br.tscn")
const SPAN = preload("res://Scenes/Tags/span.tscn")
const H1 = preload("res://Scenes/Tags/h1.tscn")
const H2 = preload("res://Scenes/Tags/h2.tscn")
const H3 = preload("res://Scenes/Tags/h3.tscn")
const H4 = preload("res://Scenes/Tags/h4.tscn")
const H5 = preload("res://Scenes/Tags/h5.tscn")
const H6 = preload("res://Scenes/Tags/h6.tscn")
const H1 = P
const H2 = P
const H3 = P
const H4 = P
const H5 = P
const H6 = P
const FORM = preload("res://Scenes/Tags/form.tscn")
const INPUT = preload("res://Scenes/Tags/input.tscn")
const BUTTON = preload("res://Scenes/Tags/button.tscn")