Skip to content

Commit

Permalink
looking stable again #25
Browse files Browse the repository at this point in the history
  • Loading branch information
iJungleboy committed Dec 6, 2022
1 parent 166d35b commit 4ffc89c
Show file tree
Hide file tree
Showing 140 changed files with 1,270 additions and 916 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// ****
// This is auto-generated code - don't modify
// Re-run the generation program to recreate
// Created 06.12.2022 22:24
// Created 06.12.2022 23:08
//
// Each tag and attributes of it prepare code, and they return an object of the same type again
// to allow fluid chaining of the commands
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// ****
// This is auto-generated code - don't modify
// Re-run the generation program to recreate
// Created 06.12.2022 22:24
// Created 06.12.2022 23:08
//
// Each tag and attributes of it prepare code, and they return an object of the same type again
// to allow fluid chaining of the commands
Expand Down
138 changes: 69 additions & 69 deletions Razor.Blade/Html5/GeneratedFormatting.cs

Large diffs are not rendered by default.

50 changes: 25 additions & 25 deletions Razor.Blade/Html5/GeneratedForms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// ****
// This is auto-generated code - don't modify
// Re-run the generation program to recreate
// Created 06.12.2022 22:24
// Created 06.12.2022 23:08
//
// Each tag and attributes of it prepare code, and they return an object of the same type again
// to allow fluid chaining of the commands
Expand Down Expand Up @@ -37,7 +37,7 @@ public partial class Button : Tag<Button>
/// Generate an &lt;button&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Button(object content = null) : base(false, "button", content)
internal Button(object content = null) : base("button", content)
{
}

Expand All @@ -49,7 +49,7 @@ internal Button(object content = null) : base(false, "button", content)
/// A Button object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Button(params object[] content) : base(false, "button", null, content)
internal Button(params object[] content) : base("button", null, content)
{
}
private Button(Button original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -212,7 +212,7 @@ public partial class Datalist : Tag<Datalist>
/// Generate an &lt;datalist&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Datalist(object content = null) : base(false, "datalist", content)
internal Datalist(object content = null) : base("datalist", content)
{
}

Expand All @@ -224,7 +224,7 @@ internal Datalist(object content = null) : base(false, "datalist", content)
/// A Datalist object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Datalist(params object[] content) : base(false, "datalist", null, content)
internal Datalist(params object[] content) : base("datalist", null, content)
{
}
private Datalist(Datalist original, CloneChanges changes) : base(original, changes) { }
Expand All @@ -245,7 +245,7 @@ public partial class Fieldset : Tag<Fieldset>
/// Generate an &lt;fieldset&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Fieldset(object content = null) : base(false, "fieldset", content)
internal Fieldset(object content = null) : base("fieldset", content)
{
}

Expand All @@ -257,7 +257,7 @@ internal Fieldset(object content = null) : base(false, "fieldset", content)
/// A Fieldset object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Fieldset(params object[] content) : base(false, "fieldset", null, content)
internal Fieldset(params object[] content) : base("fieldset", null, content)
{
}
private Fieldset(Fieldset original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -318,7 +318,7 @@ public partial class Form : Tag<Form>
/// Generate an &lt;form&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Form(object content = null) : base(false, "form", content)
internal Form(object content = null) : base("form", content)
{
}

Expand All @@ -330,7 +330,7 @@ internal Form(object content = null) : base(false, "form", content)
/// A Form object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Form(params object[] content) : base(false, "form", null, content)
internal Form(params object[] content) : base("form", null, content)
{
}
private Form(Form original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -446,7 +446,7 @@ public partial class Input : Tag<Input>
/// Generate an &lt;input&gt; tag with optional contents
/// </summary>

internal Input() : base(false, "input", new TagOptions(close: false))
internal Input() : base("input", new TagOptions(close: false))
{
}

Expand All @@ -458,7 +458,7 @@ public partial class Input : Tag<Input>
/// A Input object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Input(params object[] content) : base(false, "input", new TagOptions(close: false), content)
internal Input(params object[] content) : base("input", new TagOptions(close: false), content)
{
}
private Input(Input original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -859,7 +859,7 @@ public partial class Label : Tag<Label>
/// Generate an &lt;label&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Label(object content = null) : base(false, "label", content)
internal Label(object content = null) : base("label", content)
{
}

Expand All @@ -871,7 +871,7 @@ internal Label(object content = null) : base(false, "label", content)
/// A Label object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Label(params object[] content) : base(false, "label", null, content)
internal Label(params object[] content) : base("label", null, content)
{
}
private Label(Label original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -914,7 +914,7 @@ public partial class Legend : Tag<Legend>
/// Generate an &lt;legend&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Legend(object content = null) : base(false, "legend", content)
internal Legend(object content = null) : base("legend", content)
{
}

Expand All @@ -926,7 +926,7 @@ internal Legend(object content = null) : base(false, "legend", content)
/// A Legend object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Legend(params object[] content) : base(false, "legend", null, content)
internal Legend(params object[] content) : base("legend", null, content)
{
}
private Legend(Legend original, CloneChanges changes) : base(original, changes) { }
Expand All @@ -947,7 +947,7 @@ public partial class Optgroup : Tag<Optgroup>
/// Generate an &lt;optgroup&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Optgroup(object content = null) : base(false, "optgroup", content)
internal Optgroup(object content = null) : base("optgroup", content)
{
}

Expand All @@ -959,7 +959,7 @@ internal Optgroup(object content = null) : base(false, "optgroup", content)
/// A Optgroup object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Optgroup(params object[] content) : base(false, "optgroup", null, content)
internal Optgroup(params object[] content) : base("optgroup", null, content)
{
}
private Optgroup(Optgroup original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -1009,7 +1009,7 @@ public partial class Option : Tag<Option>
/// Generate an &lt;option&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Option(object content = null) : base(false, "option", content)
internal Option(object content = null) : base("option", content)
{
}

Expand All @@ -1021,7 +1021,7 @@ internal Option(object content = null) : base(false, "option", content)
/// A Option object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Option(params object[] content) : base(false, "option", null, content)
internal Option(params object[] content) : base("option", null, content)
{
}
private Option(Option original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -1100,7 +1100,7 @@ public partial class Output : Tag<Output>
/// Generate an &lt;output&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Output(object content = null) : base(false, "output", content)
internal Output(object content = null) : base("output", content)
{
}

Expand All @@ -1112,7 +1112,7 @@ internal Output(object content = null) : base(false, "output", content)
/// A Output object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Output(params object[] content) : base(false, "output", null, content)
internal Output(params object[] content) : base("output", null, content)
{
}
private Output(Output original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -1166,7 +1166,7 @@ public partial class Select : Tag<Select>
/// Generate an &lt;select&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Select(object content = null) : base(false, "select", content)
internal Select(object content = null) : base("select", content)
{
}

Expand All @@ -1178,7 +1178,7 @@ internal Select(object content = null) : base(false, "select", content)
/// A Select object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Select(params object[] content) : base(false, "select", null, content)
internal Select(params object[] content) : base("select", null, content)
{
}
private Select(Select original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -1304,7 +1304,7 @@ public partial class Textarea : Tag<Textarea>
/// Generate an &lt;textarea&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Textarea(object content = null) : base(false, "textarea", content)
internal Textarea(object content = null) : base("textarea", content)
{
}

Expand All @@ -1316,7 +1316,7 @@ internal Textarea(object content = null) : base(false, "textarea", content)
/// A Textarea object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Textarea(params object[] content) : base(false, "textarea", null, content)
internal Textarea(params object[] content) : base("textarea", null, content)
{
}
private Textarea(Textarea original, CloneChanges changes) : base(original, changes) { }
Expand Down
6 changes: 3 additions & 3 deletions Razor.Blade/Html5/GeneratedFrames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// ****
// This is auto-generated code - don't modify
// Re-run the generation program to recreate
// Created 06.12.2022 22:24
// Created 06.12.2022 23:08
//
// Each tag and attributes of it prepare code, and they return an object of the same type again
// to allow fluid chaining of the commands
Expand Down Expand Up @@ -37,7 +37,7 @@ public partial class Iframe : Tag<Iframe>
/// Generate an &lt;iframe&gt; tag with optional contents
/// </summary>

internal Iframe() : base(false, "iframe", new TagOptions(close: false))
internal Iframe() : base("iframe", new TagOptions(close: false))
{
}

Expand All @@ -49,7 +49,7 @@ public partial class Iframe : Tag<Iframe>
/// A Iframe object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Iframe(params object[] content) : base(false, "iframe", new TagOptions(close: false), content)
internal Iframe(params object[] content) : base("iframe", new TagOptions(close: false), content)
{
}
private Iframe(Iframe original, CloneChanges changes) : base(original, changes) { }
Expand Down
14 changes: 7 additions & 7 deletions Razor.Blade/Html5/GeneratedHead.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// ****
// This is auto-generated code - don't modify
// Re-run the generation program to recreate
// Created 06.12.2022 22:24
// Created 06.12.2022 23:08
//
// Each tag and attributes of it prepare code, and they return an object of the same type again
// to allow fluid chaining of the commands
Expand Down Expand Up @@ -37,7 +37,7 @@ public partial class Base : Tag<Base>
/// Generate an &lt;base&gt; tag with optional contents
/// </summary>

internal Base() : base(false, "base", new TagOptions(close: false))
internal Base() : base("base", new TagOptions(close: false))
{
}

Expand All @@ -49,7 +49,7 @@ public partial class Base : Tag<Base>
/// A Base object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Base(params object[] content) : base(false, "base", new TagOptions(close: false), content)
internal Base(params object[] content) : base("base", new TagOptions(close: false), content)
{
}
private Base(Base original, CloneChanges changes) : base(original, changes) { }
Expand Down Expand Up @@ -93,7 +93,7 @@ public partial class Head : Tag<Head>
/// Generate an &lt;head&gt; tag with optional contents
/// </summary>
/// <param name="content">content which will be inside the tag</param>
internal Head(object content = null) : base(false, "head", content)
internal Head(object content = null) : base("head", content)
{
}

Expand All @@ -105,7 +105,7 @@ internal Head(object content = null) : base(false, "head", content)
/// A Head object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Head(params object[] content) : base(false, "head", null, content)
internal Head(params object[] content) : base("head", null, content)
{
}
private Head(Head original, CloneChanges changes) : base(original, changes) { }
Expand All @@ -126,7 +126,7 @@ public partial class Meta : Tag<Meta>
/// Generate an &lt;meta&gt; tag with optional contents
/// </summary>

internal Meta() : base(false, "meta", new TagOptions(close: false))
internal Meta() : base("meta", new TagOptions(close: false))
{
}

Expand All @@ -138,7 +138,7 @@ public partial class Meta : Tag<Meta>
/// A Meta object with all the attributes available in that tag
/// </returns>
/// <param name="content">one or more objects (strings or tags) which will be inside the tag</param>
internal Meta(params object[] content) : base(false, "meta", new TagOptions(close: false), content)
internal Meta(params object[] content) : base("meta", new TagOptions(close: false), content)
{
}
private Meta(Meta original, CloneChanges changes) : base(original, changes) { }
Expand Down
Loading

0 comments on commit 4ffc89c

Please sign in to comment.