-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (112 loc) · 2.85 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Rectoring</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes" />
<style type="text/css" media="screen, projection">
body {
margin: 0;
background: #dfd5c5 url(tile.gif);
padding: 0.5em;
font-size: 1.2em;
}
@media only screen and (min-width: 600px) {
body {
padding: 2em;
}
}
@media only screen and (min-width: 1200px) {
body {
padding: 5em;
}
}
h1 {
margin: 0;
padding: 0 0 10px 0;
font-size: 400%;
line-height: 1em;
font-weight: normal;
text-align: left;
text-shadow: 3px 3px 4px #a0937f;
white-space: nowrap;
color: #48433d;
}
@font-face {
font-family: 'Programma';
font-weight: bold;
src: url('Programma-Bold.woff2') format('woff2');
}
ul {
list-style: none;
padding-inline-start: 0px;
margin: 0px;
padding-left: 0;
}
ul li {
padding-inline-start: 0px;
}
ul ul {
list-style: none;
padding-inline-start: 20px;
padding: 5px 0px 10px 20px;
}
hr {
background-color: RGBA(128, 128, 128, 0.2);
border: 0px;
color: red;
height: 2px;
margin: 10px 0px 10px 0px;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Rectoring</h1>
<p>
A shorter form of refactoring.
</p>
<p>
In software, 'refactoring' code means changing the layout of the code without changing the behaviour of the code.
</p>
<p>
Rectoring code means refactoring it with an automated tool rather than wasting time refactoring it by hand.
</p>
<hr />
<!-- List is be regenerated from generate_list.php -->
<!-- List begin -->
<ul>
<li>Hacklang
<ul>
<li><a href='https://github.com/hhvm/hhast#migrations'>hhast</a></li>
</ul>
</li>
<li>PHP
<ul>
<li><a href='https://getrector.org/'>Rector</a></li>
</ul>
</li>
<li>Python
<ul>
<li><a href='https://pybowler.io/'>Bowler</a></li>
<li><a href='https://github.com/python-rope/rope'>Rope</a></li>
</ul>
</li>
<li>TypeScript
<ul>
<li><a href='https://github.com/WolkSoftware/tsmod'>tsmod</a></li>
<li><a href='https://github.com/krizzdewizz/vscode-refactorix'>vscode-refactorix</a></li>
</ul>
</li>
</ul>
<!-- List end -->
<hr />
<a href="https://github.com/TomasVotruba/rectoring.com/blob/master/generate_list.php">Add a link</a>
</body>
</html>