You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- As a new entrant to the open source digital content creation landscape, Graphite has a unique formula for success: -->
167
+
<divclass="diptych sizzle-video">
168
+
<divclass="block text">
168
169
169
-
Starting life as a vector editor, Graphite is evolving into a generalized, all-in-one graphics toolbox that's built more like a game engine than a conventional creative app. The editor's tools wrap its node graph core, providing user-friendly workflows for vector, raster, and beyond.
170
+
Starting life as a vector editor, Graphite is evolving into a generalized, all-in-one graphics toolbox that's built more like a game engine than a conventional creative app. The editor's tools wrap its node graph core, providing user-friendly workflows for vector, raster, animation, and beyond.
@@ -276,7 +290,23 @@ Once it's ready to shine, Graphite's code architecture is structured to deliver
276
290
</div>
277
291
</section>
278
292
<!-- ▙ OVERVIEW ▟ -->
279
-
<!---->
293
+
<!---->
294
+
<!-- ▛ DONATE ▜ -->
295
+
<sectionid="donate"class="block">
296
+
297
+
<divclass="block">
298
+
299
+
<h2class="heart">Support the mission</h2>
300
+
301
+
Free software doesn't grow on trees! Chip in your share of the (very real) development costs so you're not leaving others to pick up the tab. Becoming a member (or giving a one-time donation) lets you help maintain Graphite's sustainability and independence.
302
+
303
+
<ahref="/donate"class="button arrow">Become a member</a>
@@ -363,23 +393,7 @@ Graphite's representation of artwork as a node graph lets you customize, compose
363
393
</div>
364
394
</section>
365
395
<!-- ▙ PROCEDURALISM ▟ -->
366
-
<!---->
367
-
<!-- ▛ DONATE ▜ -->
368
-
<sectionid="donate"class="block">
369
-
370
-
<divclass="block">
371
-
372
-
## Support the mission
373
-
374
-
Free software doesn't grow on trees! Chip in your share of the (very real) development costs so you're not leaving others to pick up the tab. Becoming a member (or giving a one-time donation) lets you help maintain Graphite's sustainability and independence.
375
-
376
-
<ahref="/donate"class="button arrow">Become a member</a>
Copy file name to clipboardExpand all lines: website/content/volunteer/guide/starting-a-task/code-quality-guidelines.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,9 @@ Comments should usually be placed on a separate line above the code they are ref
35
35
36
36
## Blank lines
37
37
38
-
Please make a habit of grouping together related lines of code in blocks separated by blank lines. If you have dozens of lines comprising a single unbroken block of logic, you are likely not splitting it apart enough to aid readability. Find sensible places to partition the logic and insert blank lines between each. Roughly 10% of the code you write should ideally be blank lines, otherwise you are likely underutilizing them at the expense of readability.
38
+
Please make a habit of grouping together related lines of code in blocks separated by blank lines. These are like your paragraphs if you were writing a novel — they greatly aid readability and your copy editor would have significant concerns with your writing if they were absent.
39
+
40
+
If you have dozens of lines comprising a single unbroken block of logic, you are likely not splitting it apart enough to aid readability. Find sensible places to partition the logic and insert blank lines between each. Roughly 10% of the code you write should ideally be blank lines, otherwise you are likely underutilizing them at the expense of readability.
0 commit comments