Skip to content

Commit

Permalink
Merge branch 'main' of github.com:patmagauran/Math2Code into main
Browse files Browse the repository at this point in the history
  • Loading branch information
patmagauran committed Oct 10, 2023
2 parents 8d92ce4 + 20a1c20 commit d31fda2
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Math2Code
# MathCoder

## About

Expand Down Expand Up @@ -65,7 +65,7 @@ To use this, just enter your equation in the input field and get formatted outpu

- [X] Improve page layout
- [ ] Add Support for Java, Java BigDecimal, C
- [ ] Optimize page payload
- [X] Optimize page payload
- [ ] Generate working code samples
- [x] Support subscripted variables
- [ ] Generate Transparent PNGs and SVGs of typeset equations
Expand Down Expand Up @@ -96,8 +96,8 @@ To use this, just enter your equation in the input field and get formatted outpu
This relies on the following technologies:

- [React](https://react.dev/)
- [Mathquill](http://mathquill.com/) and [react-mathquill](https://github.com/viktorstrate/react-mathquill)
- [tex-math-parser](https://github.com/davidtranhq/tex-math-parser)
- [Mathlive](https://cortexjs.io/mathlive/) and [react-math-view](https://github.com/patmagauran/react-math-view)
- [tex-math-parser](https://github.com/patmagauran/tex-math-parser)
- [Math.JS](https://mathjs.org/)
- [Next.JS](https://nextjs.org/)
- [React-syntax-highlighting](https://github.com/react-syntax-highlighter/react-syntax-highlighter)
Binary file added math2code/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added math2code/public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added math2code/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added math2code/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added math2code/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified math2code/public/favicon.ico
Binary file not shown.
1 change: 0 additions & 1 deletion math2code/public/next.svg

This file was deleted.

19 changes: 19 additions & 0 deletions math2code/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "MathCoder",
"short_name": "MathCoder",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
1 change: 0 additions & 1 deletion math2code/public/thirteen.svg

This file was deleted.

1 change: 0 additions & 1 deletion math2code/public/vercel.svg

This file was deleted.

5 changes: 4 additions & 1 deletion math2code/src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ export default function MyDocument({ emotionStyleTags }: MyDocumentProps) {
<Head>
{/* PWA primary color */}
<meta name="theme-color" content={theme.palette.primary.main} />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
<link rel="manifest" href="/site.webmanifest"/>
<meta name="emotion-insertion-point" content="" />
{emotionStyleTags}
</Head>
Expand Down
10 changes: 4 additions & 6 deletions math2code/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,11 @@ export default function Home() {
return (
<>
<Head>
<title>Math2Code</title>
<title>MathCoder</title>
<meta
name="description"
content="Interactive Equation editor which converts typeset equations into code and excel-compatibile formulas."
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Box>
<DrawerLayout
Expand All @@ -92,7 +90,7 @@ export default function Home() {
alignItems: "center",
}}
>
<Typography variant="h1">Math2Code</Typography>
<Typography variant="h1">MathCoder</Typography>
<Box>
<Typography variant="h6">Note:</Typography>
<Typography>
Expand All @@ -101,11 +99,11 @@ export default function Home() {
<Typography>
I Recommend reading over the readme to fully understand the
current state of the app and its limitations:{" "}
<Link href="https://github.com/patmagauran/Math2Code/blob/main/README.md">
<Link href="https://github.com/patmagauran/MathCoder/blob/main/README.md">
README
</Link>
</Typography>
<Link href="https://github.com/patmagauran/Math2Code">
<Link href="https://github.com/patmagauran/MathCoder">
Access the Github repo Here!
</Link>
</Box>
Expand Down

0 comments on commit d31fda2

Please sign in to comment.