/** * Copyright (c) 2017-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const React = require('react'); const CompLibrary = require('../../core/CompLibrary.js'); const Container = CompLibrary.Container; const siteConfig = require(process.cwd() + '/siteConfig.js'); class Users extends React.Component { render() { if ((siteConfig.users || []).length === 0) { return null; } const editUrl = siteConfig.repoUrl + '/edit/master/website/siteConfig.js'; const showcase = siteConfig.users.map((user, i) => { return ( {user.caption} ); }); return (

Who is Using KaTeX?

KaTeX is used by many projects

{showcase}

Are you using KaTeX?

Add your project
); } } module.exports = Users;