Translated tasks to English

This commit is contained in:
Abir 2020-01-14 23:20:39 +05:30 committed by GitHub
parent a4a84083a7
commit 5050e7227e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,10 @@
# Вставьте после фрагмента
# Paste after fragment
Есть строка с HTML-документом.
There is a line with an HTML Document.
Вставьте после тега `<body>` (у него могут быть атрибуты) строку `<h1>Hello</h1>`.
Insert after tag `<body>` (it may have attributes) line `<h1>Hello</h1>`.
Например:
For instance:
```js
let regexp = /ваше регулярное выражение/;
@ -20,7 +20,7 @@ let str = `
str = str.replace(regexp, `<h1>Hello</h1>`);
```
После этого значение `str`:
After that value `str`:
```html
<html>
<body style="height: 200px"><h1>Hello</h1>