ladybird/Userland/Libraries/LibMarkdown
Shannon Booth e2e7c4d574 Everywhere: Use to_number<T> instead of to_{int,uint,float,double}
In a bunch of cases, this actually ends up simplifying the code as
to_number will handle something such as:

```
Optional<I> opt;
if constexpr (IsSigned<I>)
    opt = view.to_int<I>();
else
    opt = view.to_uint<I>();
```

For us.

The main goal here however is to have a single generic number conversion
API between all of the String classes.
2023-12-23 20:41:07 +01:00
..
Block.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
BlockQuote.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
BlockQuote.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CMakeLists.txt
CodeBlock.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CodeBlock.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommentBlock.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommentBlock.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ContainerBlock.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ContainerBlock.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Document.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Document.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Forward.h
Heading.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Heading.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
HorizontalRule.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
HorizontalRule.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
LineIterator.cpp
LineIterator.h
List.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
List.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Paragraph.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Paragraph.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
SyntaxHighlighter.cpp
SyntaxHighlighter.h
Table.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Table.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Text.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
Text.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Visitor.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30