Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grammer correct #12053

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions Contentpage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
async function correctGrammar(text) {
const apiUrl = "https://api.languagetool.org/v2/check";

const response = await fetch(apiUrl, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: new URLSearchParams({
text: text,
language: "en" // You can set this to any language supported by LanguageTool
})
});

const result = await response.json();
let correctedText = text;

// Applying suggestions from the response
result.matches.forEach(match => {
const { offset, length, replacements } = match;
if (replacements.length > 0) {
// Replace the incorrect part with the first suggestion
correctedText = correctedText.substring(0, offset) +
replacements[0].value +
correctedText.substring(offset + length);
}
});

return correctedText;
}

// Usage
const userInput = prompt("Enter a sentence:");
correctGrammar(userInput).then(correctedText => {
console.log("Corrected Text:", correctedText);
}).catch(error => {
console.error("Error:", error);
});