mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-10 05:28:41 +00:00
Partial list of KaTeX users (#1569)
* Partial list of KaTeX users Fix #305 (though work should be ongoing) by incorporating users from that issue. Also render project names. * Ordering and link fixes * Add more projects, allow non-square images * Bug fix * Implement comments * Remove Bokeh * Switch Gradescope logo, fix layout for small screens * Implement @ylemkimon's comments * Add expii logo * Avoid master link
This commit is contained in:
@@ -20,7 +20,10 @@ class Users extends React.Component {
|
||||
const showcase = siteConfig.users.map((user, i) => {
|
||||
return (
|
||||
<a href={user.infoLink} key={i}>
|
||||
<img src={user.image} alt={user.caption} title={user.caption} />
|
||||
<div className="imgbox">
|
||||
<img src={user.image} alt={user.caption} title={user.caption} />
|
||||
</div>
|
||||
<p>{user.caption}</p>
|
||||
</a>
|
||||
);
|
||||
});
|
||||
@@ -31,7 +34,7 @@ class Users extends React.Component {
|
||||
<div className="showcaseSection">
|
||||
<div className="prose">
|
||||
<h1>Who is Using KaTeX?</h1>
|
||||
<p>KaTeX is used by many projects</p>
|
||||
<p>KaTeX is used by many projects:</p>
|
||||
</div>
|
||||
<div className="logos">{showcase}</div>
|
||||
<p>Are you using KaTeX?</p>
|
||||
|
Reference in New Issue
Block a user