Home  >  Article  >  Development Tools  >  How vscode fills html content quickly like pycharm

How vscode fills html content quickly like pycharm

王林
王林Original
2020-02-25 16:19:143550browse

How vscode fills html content quickly like pycharm

The specific method is as follows:

1. Create a new html file;

2. Fill in "!" in the editor window, remember, only An English exclamation mark;

3. Then press the "Tab" or "Enter" key

(recommended related tutorials: vscode tutorial)

The page will be filled in automatically, and the filled content is as follows:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
</body>
</html>

For more programming-related content, please pay attention to the Programming Introduction column on the php Chinese website!

The above is the detailed content of How vscode fills html content quickly like pycharm. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn