-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Break up the design page into Features and Comparisons (#697)
* Break up the design page into Features and Comparisons Signed-off-by: Carl Gieringer <78054+carlgieringer@users.noreply.github.com> * PR edits Signed-off-by: Carl Gieringer <78054+carlgieringer@users.noreply.github.com> * Fix links Signed-off-by: Carl Gieringer <78054+carlgieringer@users.noreply.github.com> --------- Signed-off-by: Carl Gieringer <78054+carlgieringer@users.noreply.github.com>
- Loading branch information
1 parent
58cec4b
commit 2ebb7ba
Showing
15 changed files
with
607 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import dynamic from "next/dynamic"; | ||
/** A component for an unimplemented feature. */ | ||
export function FeatureComponent({ issueId, children }) { | ||
const issueLink = issueId ? <span>( | ||
<a href={`https://github.com/Howdju/howdju/issues/${issueId}`}> | ||
#{issueId} | ||
</a>)</span> : null; | ||
const abbrTitle = issueId ? `Future feature (#${issueId})` : "Future feature"; | ||
return ( | ||
<span> | ||
<abbr title={abbrTitle}>{children}</abbr> {issueLink} | ||
</span> | ||
); | ||
} | ||
export const Feature = dynamic( | ||
() => Promise.resolve(FeatureComponent), | ||
{ | ||
ssr: false, | ||
loading: () => <span>[enable JavaScript to see the feature]</span>, | ||
} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
# Appearances | ||
|
||
Appearances indicate that an entity appears at a MediaExcerpt. The appearing entity is called the | ||
"apparition". Howdju currently supports Proposition appearitions. | ||
import { Feature } from "../../components/Feature.mdx"; | ||
|
||
Appearances indicate that an entity appears at a | ||
[MediaExcerpt](/concepts/media-excerpts). The appearing entity is called the | ||
"apparition". | ||
|
||
## Apparitions | ||
|
||
The types of apparations are: | ||
|
||
- PropositionAppearance: the speech represented by the MediaExcerpt is validly paraphrased by the | ||
appearing Proposition. | ||
- JustificationAppearance: the argument represented by the MediaExcerpt corresponds to the Justification. | ||
- <Feature issueId="690">JustificationAppearance</Feature>: the argument | ||
represented by the MediaExcerpt corresponds to the Justification. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Persorgs | ||
|
||
Persorgs are something capable of making speech: a natural person or an organization. | ||
|
||
Components: | ||
|
||
- Name | ||
- Known for: for natural persons, a disambiguator in the case of conflicting | ||
names. | ||
- URLs: online locations to learn about the persorg or to further disambiguate | ||
a person. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.