Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: use code blocks to avoid rendering issue on the website #4167

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ declare_lint_rule! {
/// Disallow template literal placeholder syntax in regular strings.
///
/// ECMAScript 6 allows programmers to create strings containing variable or expressions using template literals,
/// instead of string concatenation, by writing expressions like ${variable} between two backtick quotes (`).
/// It can be easy to use the wrong quotes when wanting to use template literals, by writing "${variable}",
/// and end up with the literal value "${variable}" instead of a string containing the value of the injected expressions.
/// instead of string concatenation, by writing expressions like `${variable}` between two backtick quotes (`).
/// It can be easy to use the wrong quotes when wanting to use template literals, by writing `"${variable}"`,
/// and end up with the literal value `"${variable}"` instead of a string containing the value of the injected expressions.
///
/// ## Examples
///
Expand Down