Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontmatter #1798

Merged
merged 3 commits into from
Jun 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/pages/sicp/subcomponents/SicpIndexPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import SicpToc from './SicpToc';
const originalAuthors = 'Harold Abelson and Gerald Jay Sussman';
const originalWithAuthors = 'with Julie Sussman';
const adaptedAuthors = 'Martin Henz and Tobias Wrigstad';
const adaptedWithAuthors = 'with Samuel Fang';
const adaptedWithAuthors = 'with Julie Sussman';
const developers = 'Samuel Fang';

const authors = (
<div className="sicp-authors">
Expand All @@ -22,6 +23,11 @@ const authors = (
{adaptedWithAuthors}
<i>— adapters to JavaScript</i>
</p>
<br />
<H4>{developers}</H4>
<p>
<i>— designer and developer of Interactive SICP</i>
</p>
</div>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,22 @@ exports[`Sicp index page 1`] = `
</h4>
</Component>
<p>
with Samuel Fang
with Julie Sussman
<i>
— adapters to JavaScript
</i>
</p>
<br />
<Component>
<h4 className=\\"bp3-heading\\">
Samuel Fang
</h4>
</Component>
<p>
<i>
— designer and developer of Interactive SICP
</i>
</p>
</div>
</div>
</div>
Expand Down