style: some color & spacing changes
This commit is contained in:
parent
06c014dd19
commit
514b43a4e9
4 changed files with 4 additions and 4 deletions
|
@ -153,7 +153,7 @@ const description =
|
||||||
<strong>Import</strong>
|
<strong>Import</strong>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>Full <code>.csv</code> content</h2>
|
<h2>Full <code class="inline-code">.csv</code> content</h2>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<Code code={importedCode} />
|
<Code code={importedCode} />
|
||||||
|
|
|
@ -57,7 +57,7 @@ const year = new Date().getFullYear()
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
footer {
|
footer {
|
||||||
padding: 0;
|
padding: 1em;
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
grid-auto-flow: row;
|
grid-auto-flow: row;
|
||||||
|
|
|
@ -8,7 +8,7 @@ let publishedOn = `the 15th of February, 2025`
|
||||||
const publishDate = `2025-02-15`
|
const publishDate = `2025-02-15`
|
||||||
const publishState = ``
|
const publishState = ``
|
||||||
const content = `<p>I have moved main activities (e.g, repository, planned work, announcements/discussions) on my projects to <a href="https://sourcehut.org">SourceHut</a> — a <em>code forge</em> much like GitHub, GitLab or Codeberg, but with significant differences.</p>
|
const content = `<p>I have moved main activities (e.g, repository, planned work, announcements/discussions) on my projects to <a href="https://sourcehut.org">SourceHut</a> — a <em>code forge</em> much like GitHub, GitLab or Codeberg, but with significant differences.</p>
|
||||||
<p>The projects are still automatically mirrored to GitHub using automatic <code>git push --mirror</code> via <a href="https://builds.sr.ht">SourceHut Builds</a>.</p>
|
<p>The projects are still automatically mirrored to GitHub using automatic <code class="inline-code">git push --mirror</code> via <a href="https://builds.sr.ht">SourceHut Builds</a>.</p>
|
||||||
<p>👉 <a href="https://sr.ht/~ayoayco/">My projects on SourceHut</a></p>`
|
<p>👉 <a href="https://sr.ht/~ayoayco/">My projects on SourceHut</a></p>`
|
||||||
|
|
||||||
publishedOn = publishedOn === '' ? publishDate : publishedOn
|
publishedOn = publishedOn === '' ? publishDate : publishedOn
|
||||||
|
|
|
@ -10,7 +10,7 @@ const publishState = ``
|
||||||
const content = `<p>Started some migrations of JS projects to TypeScript. There are a few moves from TypeScript & node that influenced me to do this:</p>
|
const content = `<p>Started some migrations of JS projects to TypeScript. There are a few moves from TypeScript & node that influenced me to do this:</p>
|
||||||
<ol>
|
<ol>
|
||||||
<li><a href="https://nodejs.org/api/typescript.html#type-stripping">Node's type stripping</a> - allows execution of TypeScript files that only contains erasable TypeScript syntax.</li>
|
<li><a href="https://nodejs.org/api/typescript.html#type-stripping">Node's type stripping</a> - allows execution of TypeScript files that only contains erasable TypeScript syntax.</li>
|
||||||
<li><a href="https://www.totaltypescript.com/erasable-syntax-only">TypeScript's erasable syntax only</a> - a flag to tell <code>tsc</code> to throw error on syntax that are not erasable (e.g., enums, namespaces, and class parameter properties)</li>
|
<li><a href="https://www.totaltypescript.com/erasable-syntax-only">TypeScript's erasable syntax only</a> - a flag to tell <code class="inline-code">tsc</code> to throw error on syntax that are not erasable (e.g., enums, namespaces, and class parameter properties)</li>
|
||||||
<li><a href="https://devblogs.microsoft.com/typescript/typescript-native-port/">TypeScript native compiler</a> - promises 10x faster typescript compilation</li>
|
<li><a href="https://devblogs.microsoft.com/typescript/typescript-native-port/">TypeScript native compiler</a> - promises 10x faster typescript compilation</li>
|
||||||
</ol>`
|
</ol>`
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue