blob: fa6b5793ecd4032d9a7a1d94470ba82a5ff86a05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html>
<html lang="en">
<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>crep - like grep but for code</title>
<style>
body {
padding: 2em;
background: white;
font-family: sans-serif;
line-height: 1.4rem;
font-size: 16px;
}
</style>
</head>
<body>
<h1>crep - like grep but for code</h1>
<p>Crep allows users to search for specific code, functions, variables, or
patterns within their codebase, helping them locate and navigate code
quickly.</p>
</body>
</html>
|