mirror of
https://github.com/explosion/spaCy.git
synced 2025-08-05 12:50:20 +03:00
Add missing alt
texts
This commit is contained in:
parent
d5d02f46ff
commit
ee466a1224
|
@ -134,6 +134,7 @@ useful for your purpose. Here are some important considerations to keep in mind:
|
||||||
<Image
|
<Image
|
||||||
src="/images/sense2vec.jpg"
|
src="/images/sense2vec.jpg"
|
||||||
href="https://github.com/explosion/sense2vec"
|
href="https://github.com/explosion/sense2vec"
|
||||||
|
alt="sense2vec Screenshot"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
[`sense2vec`](https://github.com/explosion/sense2vec) is a library developed by
|
[`sense2vec`](https://github.com/explosion/sense2vec) is a library developed by
|
||||||
|
|
|
@ -113,6 +113,7 @@ code.
|
||||||
<Image
|
<Image
|
||||||
src="/images/thinc_mypy.jpg"
|
src="/images/thinc_mypy.jpg"
|
||||||
href="https://thinc.ai/docs/usage-type-checking#linting"
|
href="https://thinc.ai/docs/usage-type-checking#linting"
|
||||||
|
alt="Screenshot of Thinc type checking in VSCode with mypy"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</Accordion>
|
</Accordion>
|
||||||
|
|
|
@ -943,7 +943,7 @@ full embedded visualizer, as well as individual components.
|
||||||
> $ pip install spacy-streamlit --pre
|
> $ pip install spacy-streamlit --pre
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Using [`spacy-streamlit`](https://github.com/explosion/spacy-streamlit), your
|
Using [`spacy-streamlit`](https://github.com/explosion/spacy-streamlit), your
|
||||||
projects can easily define their own scripts that spin up an interactive
|
projects can easily define their own scripts that spin up an interactive
|
||||||
|
|
|
@ -437,6 +437,6 @@ Alternatively, if you're using [Streamlit](https://streamlit.io), check out the
|
||||||
helps you integrate spaCy visualizations into your apps. It includes a full
|
helps you integrate spaCy visualizations into your apps. It includes a full
|
||||||
embedded visualizer, as well as individual components.
|
embedded visualizer, as well as individual components.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
|
@ -89,8 +89,8 @@ const Landing = () => {
|
||||||
</LandingCard>
|
</LandingCard>
|
||||||
|
|
||||||
<LandingCard title="Awesome ecosystem" url="/usage/projects" button="Read more">
|
<LandingCard title="Awesome ecosystem" url="/usage/projects" button="Read more">
|
||||||
Since its release in 2015, spaCy has become an industry standard with
|
Since its release in 2015, spaCy has become an industry standard with a huge
|
||||||
a huge ecosystem. Choose from a variety of plugins, integrate with your machine
|
ecosystem. Choose from a variety of plugins, integrate with your machine
|
||||||
learning stack and build custom components and workflows.
|
learning stack and build custom components and workflows.
|
||||||
</LandingCard>
|
</LandingCard>
|
||||||
</LandingGrid>
|
</LandingGrid>
|
||||||
|
@ -206,7 +206,10 @@ const Landing = () => {
|
||||||
<LandingGrid cols={2}>
|
<LandingGrid cols={2}>
|
||||||
<LandingCol>
|
<LandingCol>
|
||||||
<Link to="/usage/projects" hidden>
|
<Link to="/usage/projects" hidden>
|
||||||
<ImageFill image={projectsImage} />
|
<ImageFill
|
||||||
|
image={projectsImage}
|
||||||
|
alt="Illustration of project workflow and commands"
|
||||||
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
|
|
|
@ -19,7 +19,7 @@ export default function Card({ title, to, image, header, small, onClick, childre
|
||||||
<H5 className={classes.title}>
|
<H5 className={classes.title}>
|
||||||
{image && (
|
{image && (
|
||||||
<div className={classes.image}>
|
<div className={classes.image}>
|
||||||
<ImageNext src={image} height={35} width={35} alt="" />
|
<ImageNext src={image} height={35} width={35} alt={`${title} Logo`} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{title && (
|
{title && (
|
||||||
|
|
|
@ -51,7 +51,7 @@ export default function Title({
|
||||||
|
|
||||||
{image && (
|
{image && (
|
||||||
<div className={classes.image}>
|
<div className={classes.image}>
|
||||||
<Image src={image} width={100} height={100} alt="" />
|
<Image src={image} width={100} height={100} alt={`${title} Logo`} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -83,7 +83,7 @@ const UniverseContent = ({ content = [], categories, theme, pageContext, mdxComp
|
||||||
const header = youtube && (
|
const header = youtube && (
|
||||||
<Image
|
<Image
|
||||||
src={`https://img.youtube.com/vi/${youtube}/0.jpg`}
|
src={`https://img.youtube.com/vi/${youtube}/0.jpg`}
|
||||||
alt=""
|
alt={title}
|
||||||
width="480"
|
width="480"
|
||||||
height="360"
|
height="360"
|
||||||
style={{
|
style={{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user