Search #48
85
dist/api/blog/blogData.php
vendored
85
dist/api/blog/blogData.php
vendored
@ -444,22 +444,87 @@ class blogData
|
|||||||
|
|
||||||
if ($result)
|
if ($result)
|
||||||
{
|
{
|
||||||
$bodyText = array_column($result, "bodyText");
|
for ($i = 0; $i < count($result); $i++)
|
||||||
// go through each body plain text and get the sentence before, the sentence with the search term and the sentence after and append it to a new array
|
|
||||||
foreach ($bodyText as $key => $text)
|
|
||||||
{
|
{
|
||||||
$text = strtolower($text);
|
$result[$i]["abstract"] = $this->getShortPost($searchTerm, stripcslashes($result[$i]["bodyText"]));
|
||||||
$searchTerm = strtolower($searchTerm);
|
|
||||||
$pos = strpos($text, $searchTerm);
|
|
||||||
$start = strrpos(substr($text, 0, $pos), ".") + 1;
|
|
||||||
$end = strpos($text, ".", $pos);
|
|
||||||
$result[$key]["bodyText"] = substr($text, $start, $end - $start);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
return array("errorMessage" => "Error, could not find posts");
|
return array("errorMessage" => "Error, could not find posts");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the short post with the search term
|
||||||
|
* @param string $searchTerm - Search term
|
||||||
|
* @param $text - Body of the post as plain text
|
||||||
|
* @return string - Short post with the search term
|
||||||
|
*/
|
||||||
|
private function getShortPost(string $searchTerm, $text): string
|
||||||
|
{
|
||||||
|
$pattern = '/([,:;!?.-]+)/u';
|
||||||
|
$parts = preg_split($pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
|
||||||
|
|
||||||
|
$cleanedParts = [];
|
||||||
|
|
||||||
|
foreach ($parts as $part)
|
||||||
|
{
|
||||||
|
$part = trim($part); // Remove leading/trailing spaces and newline characters
|
||||||
|
if (!empty($part))
|
||||||
|
{
|
||||||
|
$cleanedParts[] = $part;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$combinedParts = [];
|
||||||
|
$currentPart = '';
|
||||||
|
|
||||||
|
foreach ($cleanedParts as $part)
|
||||||
|
{
|
||||||
|
if (preg_match('/[,:;!?.-]/u', $part))
|
||||||
|
{
|
||||||
|
$currentPart .= $part;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!empty($currentPart))
|
||||||
|
{
|
||||||
|
$combinedParts[] = trim($currentPart);
|
||||||
|
}
|
||||||
|
$currentPart = rtrim($part);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($currentPart))
|
||||||
|
{
|
||||||
|
$combinedParts[] = trim($currentPart);
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = "";
|
||||||
|
|
||||||
|
|
||||||
|
for ($i = 0; $i < count($combinedParts); $i++)
|
||||||
|
{
|
||||||
|
$part = $combinedParts[$i];
|
||||||
|
|
||||||
|
if (stripos($part, $searchTerm) !== false)
|
||||||
|
{
|
||||||
|
$before = ($i > 0) ? $combinedParts[$i - 1] : "";
|
||||||
|
$after = ($i < count($combinedParts) - 1) ? $combinedParts[$i + 1] : "";
|
||||||
|
|
||||||
|
if ($before === "" && $i > 0)
|
||||||
|
{
|
||||||
|
$before = $combinedParts[$i - 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = $before . " " . $part . " " . $after;
|
||||||
|
|
||||||
|
// If the search term is found, we don't need to continue checking subsequent parts
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
}
|
}
|
2
dist/api/blog/blogRoutes.php
vendored
2
dist/api/blog/blogRoutes.php
vendored
@ -254,7 +254,7 @@ class blogRoutes implements routesInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
$featured = $data["featured"] === "true";
|
$featured = $data["featured"] === "true";
|
||||||
$insertedID = $this->blogData->createPost($data["title"], $data["abstract"], $data["body"], $data["dateCreated"], $featured, $data["categories"], $headerImg);
|
$insertedID = $this->blogData->createPost($data["title"], $data["abstract"], $data["body"], $data["bodyText"], $data["dateCreated"], $featured, $data["categories"], $headerImg);
|
||||||
if (!is_int($insertedID))
|
if (!is_int($insertedID))
|
||||||
{
|
{
|
||||||
// uh oh something went wrong
|
// uh oh something went wrong
|
||||||
|
2
dist/blog/index.html
vendored
2
dist/blog/index.html
vendored
@ -1 +1 @@
|
|||||||
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Rohit Pai - Blog</title><meta name="title" content="Rohit Pai - Blog"><meta name="description" content="This is all the blog posts that Rohit Pai has posted. You'll find posts on various topics, mostly on tech but some on various other random topics."><meta name="keywords" content="Blog, all posts, rohit, pai, rohit pai, tech, web development, self-hosting, hosting"><meta name="robots" content="index, follow"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="language" content="English"><meta name="author" content="Rohit Pai"><link rel="stylesheet" href="/blog/css/main.css"><script src="https://kit.fontawesome.com/ed3c25598e.js" crossorigin="anonymous"></script></head><body><nav><input type="checkbox" id="nav-check"><h1><a href="/" class="link">rohit pai</a></h1><div class="nav-btn"><label for="nav-check"><span></span> <span></span> <span></span></label></div><ul><li><a href="/#about" class="textShadow link">about</a></li><li><a href="/#curriculumVitae" class="textShadow link">cv</a></li><li><a href="/#projects" class="textShadow link">projects</a></li><li><a href="/#contact" class="textShadow link">contact</a></li><li><a href="/blog" class="textShadow link active">blog</a></li></ul></nav><header><div><h1>full stack developer</h1><a href="/#sayHello" class="btn btnPrimary boxShadowIn boxShadowOut">Contact Me</a> <a href="" id="arrow"><i class="fa-solid fa-chevron-down"></i></a></div></header><main id="main"></main><footer class="flexRow"><div class="spacer"></div><p>© <span id="year"></span> Rohit Pai all rights reserved</p><div class="button"><button id="goBackToTop"><i class="fa-solid fa-chevron-up"></i></button></div></footer><script src="/js/typewriter.js"></script><script src="/blog/js/index.js"></script><script id="dsq-count-scr" src="https://rohitpaiportfolio.disqus.com/count.js" async></script></body></html>
|
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Rohit Pai - Blog</title><meta name="title" content="Rohit Pai - Blog"><meta name="description" content="This is all the blog posts that Rohit Pai has posted. You'll find posts on various topics, mostly on tech but some on various other random topics."><meta name="keywords" content="Blog, all posts, rohit, pai, rohit pai, tech, web development, self-hosting, hosting"><meta name="robots" content="index, follow"><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="language" content="English"><meta name="author" content="Rohit Pai"><link rel="stylesheet" href="/blog/css/main.css"><script src="https://kit.fontawesome.com/ed3c25598e.js" crossorigin="anonymous"></script></head><body><nav><input type="checkbox" id="nav-check"><h1><a href="/" class="link">rohit pai</a></h1><div class="nav-btn"><label for="nav-check"><span></span> <span></span> <span></span></label></div><ul><li><a href="/#about" class="textShadow link">about</a></li><li><a href="/#curriculumVitae" class="textShadow link">cv</a></li><li><a href="/#projects" class="textShadow link">projects</a></li><li><a href="/#contact" class="textShadow link">contact</a></li><li><a href="/blog" class="textShadow link active">blog</a></li></ul></nav><header><div><h1>full stack developer</h1><a href="/#sayHello" class="btn btnPrimary boxShadowIn boxShadowOut">Contact Me</a> <a href="" id="arrow"><i class="fa-solid fa-chevron-down"></i></a></div></header><div class="menuBar"><div class="menu"><ul><li><a href="/blog" class="link active">All posts</a></li><li><a href="/blog/category" class="link">categories</a></li><li><label for="searchField" aria-hidden="true" hidden>search</label> <input type="search" name="search" id="searchField" placeholder="Search..."> <button type="submit" id="searchBtn" class="btn btnPrimary"><i class="fa fa-search"></i></button></li></ul></div></div><main id="main"></main><footer class="flexRow"><div class="spacer"></div><p>© <span id="year"></span> Rohit Pai all rights reserved</p><div class="button"><button id="goBackToTop"><i class="fa-solid fa-chevron-up"></i></button></div></footer><script src="/js/typewriter.js"></script><script src="/blog/js/index.js"></script><script id="dsq-count-scr" src="https://rohitpaiportfolio.disqus.com/count.js" async></script></body></html>
|
2
dist/blog/js/index.js
vendored
2
dist/blog/js/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/editor/editor.html
vendored
2
dist/editor/editor.html
vendored
File diff suppressed because one or more lines are too long
2
dist/editor/js/editor.js
vendored
2
dist/editor/js/editor.js
vendored
File diff suppressed because one or more lines are too long
@ -444,22 +444,87 @@ class blogData
|
|||||||
|
|
||||||
if ($result)
|
if ($result)
|
||||||
{
|
{
|
||||||
$bodyText = array_column($result, "bodyText");
|
for ($i = 0; $i < count($result); $i++)
|
||||||
// go through each body plain text and get the sentence before, the sentence with the search term and the sentence after and append it to a new array
|
|
||||||
foreach ($bodyText as $key => $text)
|
|
||||||
{
|
{
|
||||||
$text = strtolower($text);
|
$result[$i]["abstract"] = $this->getShortPost($searchTerm, stripcslashes($result[$i]["bodyText"]));
|
||||||
$searchTerm = strtolower($searchTerm);
|
|
||||||
$pos = strpos($text, $searchTerm);
|
|
||||||
$start = strrpos(substr($text, 0, $pos), ".") + 1;
|
|
||||||
$end = strpos($text, ".", $pos);
|
|
||||||
$result[$key]["bodyText"] = substr($text, $start, $end - $start);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
return array("errorMessage" => "Error, could not find posts");
|
return array("errorMessage" => "Error, could not find posts");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the short post with the search term
|
||||||
|
* @param string $searchTerm - Search term
|
||||||
|
* @param $text - Body of the post as plain text
|
||||||
|
* @return string - Short post with the search term
|
||||||
|
*/
|
||||||
|
private function getShortPost(string $searchTerm, $text): string
|
||||||
|
{
|
||||||
|
$pattern = '/([,:;!?.-]+)/u';
|
||||||
|
$parts = preg_split($pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
|
||||||
|
|
||||||
|
$cleanedParts = [];
|
||||||
|
|
||||||
|
foreach ($parts as $part)
|
||||||
|
{
|
||||||
|
$part = trim($part); // Remove leading/trailing spaces and newline characters
|
||||||
|
if (!empty($part))
|
||||||
|
{
|
||||||
|
$cleanedParts[] = $part;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$combinedParts = [];
|
||||||
|
$currentPart = '';
|
||||||
|
|
||||||
|
foreach ($cleanedParts as $part)
|
||||||
|
{
|
||||||
|
if (preg_match('/[,:;!?.-]/u', $part))
|
||||||
|
{
|
||||||
|
$currentPart .= $part;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!empty($currentPart))
|
||||||
|
{
|
||||||
|
$combinedParts[] = trim($currentPart);
|
||||||
|
}
|
||||||
|
$currentPart = rtrim($part);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($currentPart))
|
||||||
|
{
|
||||||
|
$combinedParts[] = trim($currentPart);
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = "";
|
||||||
|
|
||||||
|
|
||||||
|
for ($i = 0; $i < count($combinedParts); $i++)
|
||||||
|
{
|
||||||
|
$part = $combinedParts[$i];
|
||||||
|
|
||||||
|
if (stripos($part, $searchTerm) !== false)
|
||||||
|
{
|
||||||
|
$before = ($i > 0) ? $combinedParts[$i - 1] : "";
|
||||||
|
$after = ($i < count($combinedParts) - 1) ? $combinedParts[$i + 1] : "";
|
||||||
|
|
||||||
|
if ($before === "" && $i > 0)
|
||||||
|
{
|
||||||
|
$before = $combinedParts[$i - 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = $before . " " . $part . " " . $after;
|
||||||
|
|
||||||
|
// If the search term is found, we don't need to continue checking subsequent parts
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
}
|
}
|
@ -254,7 +254,7 @@ class blogRoutes implements routesInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
$featured = $data["featured"] === "true";
|
$featured = $data["featured"] === "true";
|
||||||
$insertedID = $this->blogData->createPost($data["title"], $data["abstract"], $data["body"], $data["dateCreated"], $featured, $data["categories"], $headerImg);
|
$insertedID = $this->blogData->createPost($data["title"], $data["abstract"], $data["body"], $data["bodyText"], $data["dateCreated"], $featured, $data["categories"], $headerImg);
|
||||||
if (!is_int($insertedID))
|
if (!is_int($insertedID))
|
||||||
{
|
{
|
||||||
// uh oh something went wrong
|
// uh oh something went wrong
|
||||||
|
@ -49,6 +49,22 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<div class="menuBar">
|
||||||
|
<div class="menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="/blog" class="link active">All posts</a></li>
|
||||||
|
<li><a href="/blog/category" class="link">categories</a></li>
|
||||||
|
<li>
|
||||||
|
<label for="searchField" aria-hidden="true" hidden>search</label>
|
||||||
|
<input type="search" name="search" id="searchField"
|
||||||
|
placeholder="Search...">
|
||||||
|
<button type="submit" id="searchBtn" class="btn btnPrimary"><i
|
||||||
|
class="fa fa-search"></i></button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<main id="main">
|
<main id="main">
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
@ -44,7 +44,6 @@ function goToURL(url)
|
|||||||
if (urlArray[2] === 'post')
|
if (urlArray[2] === 'post')
|
||||||
{
|
{
|
||||||
// Create a new URL with the dynamic part
|
// Create a new URL with the dynamic part
|
||||||
// window.history.pushState(null, null, url);
|
|
||||||
loadIndividualPost(urlArray[urlArray.length - 1]).catch(err => console.log(err));
|
loadIndividualPost(urlArray[urlArray.length - 1]).catch(err => console.log(err));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -52,14 +51,20 @@ function goToURL(url)
|
|||||||
if (urlArray[2] === 'category')
|
if (urlArray[2] === 'category')
|
||||||
{
|
{
|
||||||
// Create a new URL with the dynamic part
|
// Create a new URL with the dynamic part
|
||||||
// window.history.pushState(null, null, url);
|
|
||||||
if (urlArray[3])
|
if (urlArray[3])
|
||||||
{
|
{
|
||||||
loadPostsByCategory(urlArray[urlArray.length - 1]);
|
loadPostsByCategory(urlArray[urlArray.length - 1]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
loadAllCategories();
|
loadAllCategories().catch(err => console.log(err));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (urlArray[2] === 'search' && urlArray[3])
|
||||||
|
{
|
||||||
|
// Create a new URL with the dynamic part
|
||||||
|
loadSearchResults(urlArray[urlArray.length - 1]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,6 +72,26 @@ function goToURL(url)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
document.querySelector('#searchBtn').addEventListener('click', _ =>
|
||||||
|
{
|
||||||
|
let searchTerm = document.querySelector('#searchField').value;
|
||||||
|
if (searchTerm.length > 0)
|
||||||
|
{
|
||||||
|
window.history.pushState(null, null, `/blog/search/${searchTerm}`);
|
||||||
|
document.querySelector('#searchField').value = '';
|
||||||
|
document.querySelector('#main').innerHTML = '';
|
||||||
|
goToURL(`/blog/search/${searchTerm}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelector('#searchField').addEventListener('keyup', e =>
|
||||||
|
{
|
||||||
|
if (e.key === 'Enter')
|
||||||
|
{
|
||||||
|
document.querySelector('#searchBtn').click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a large post element
|
* Creates a large post element
|
||||||
* @param post the post object
|
* @param post the post object
|
||||||
@ -116,25 +141,6 @@ function createLargePost(post)
|
|||||||
*/
|
*/
|
||||||
function loadHomeContent()
|
function loadHomeContent()
|
||||||
{
|
{
|
||||||
let menuBar = document.createElement('div');
|
|
||||||
menuBar.classList.add('menuBar');
|
|
||||||
// language=HTML
|
|
||||||
menuBar.innerHTML = `
|
|
||||||
<div class="menu">
|
|
||||||
<ul>
|
|
||||||
<li><a href="/blog/category" class="link">categories</a></li>
|
|
||||||
<li>
|
|
||||||
<label for="search" aria-hidden="true" hidden>search</label>
|
|
||||||
<input type="search" name="search" id="search"
|
|
||||||
placeholder="Search...">
|
|
||||||
<button type="submit" class="btn btnPrimary"><i
|
|
||||||
class="fa fa-search"></i></button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
document.querySelector('#main').appendChild(menuBar);
|
|
||||||
|
|
||||||
fetch('/api/blog/post').then(res => res.json().then(json =>
|
fetch('/api/blog/post').then(res => res.json().then(json =>
|
||||||
{
|
{
|
||||||
for (let i = 0; i < json.length; i++)
|
for (let i = 0; i < json.length; i++)
|
||||||
@ -458,6 +464,34 @@ function loadPostsByCategory(category)
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function loadSearchResults(searchTerm)
|
||||||
|
{
|
||||||
|
document.title = 'Rohit Pai - Search Results for ' + decodeURI(searchTerm);
|
||||||
|
fetch(`/api/blog/search/${searchTerm}`).then(res => res.json().then(json =>
|
||||||
|
{
|
||||||
|
let main = document.querySelector('#main');
|
||||||
|
let posts = document.createElement('section');
|
||||||
|
posts.classList.add('catPosts');
|
||||||
|
posts.id = 'searchResults';
|
||||||
|
let h1 = document.createElement('h1');
|
||||||
|
h1.innerHTML = 'Search Results';
|
||||||
|
main.appendChild(h1);
|
||||||
|
for (let i = 0; i < json.length; i++)
|
||||||
|
{
|
||||||
|
let largePost = document.createElement('section');
|
||||||
|
largePost.classList.add('largePost');
|
||||||
|
if (i < json.length - 1)
|
||||||
|
{
|
||||||
|
largePost.classList.add('categoryPost');
|
||||||
|
}
|
||||||
|
let outerContent = createLargePost(json[i]);
|
||||||
|
largePost.appendChild(outerContent);
|
||||||
|
posts.appendChild(largePost);
|
||||||
|
}
|
||||||
|
main.appendChild(posts);
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shows the 404 page
|
* Shows the 404 page
|
||||||
*/
|
*/
|
||||||
|
@ -64,7 +64,6 @@ nav ul li span {
|
|||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
nav ul li .active::before,
|
nav ul li .active::before,
|
||||||
nav ul li .active::after {
|
nav ul li .active::after {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
|
@ -200,10 +200,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="formControl">
|
<div class="formControl">
|
||||||
<label for="postCategories">Categories</label>
|
<label for="postCategories">Categories</label>
|
||||||
<input type="text" name="postCategories" id="postCategories"
|
<input type="text" name="postCategories" id="postCategories" title="CSV format" required>
|
||||||
pattern='[a-zA-Z0-9 ]+, |\w+' title="CSV format"
|
|
||||||
oninvalid="this.setCustomValidity('This field takes a CSV like format')"
|
|
||||||
oninput="this.setCustomValidity('')" required>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="formControl">
|
<div class="formControl">
|
||||||
@ -264,10 +261,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="formControl">
|
<div class="formControl">
|
||||||
<label for="editPostCategories">Categories</label>
|
<label for="editPostCategories">Categories</label>
|
||||||
<input type="text" name="editPostCategories" id="editPostCategories"
|
<input type="text" name="editPostCategories" id="editPostCategories" title="CSV format" required>
|
||||||
pattern='[a-zA-Z0-9 ]+, |\w+' title="CSV format"
|
|
||||||
oninvalid="this.setCustomValidity('This field takes a CSV like format')"
|
|
||||||
oninput="this.setCustomValidity('')" required>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="formControl">
|
<div class="formControl">
|
||||||
|
@ -486,11 +486,11 @@ function viewToPlainText(viewItem)
|
|||||||
// If item is `Text` or `TextProxy` simple take its text data.
|
// If item is `Text` or `TextProxy` simple take its text data.
|
||||||
text = viewItem.data;
|
text = viewItem.data;
|
||||||
}
|
}
|
||||||
else if (viewItem.is('element', 'img') && viewItem.hasAttribute('alt'))
|
// else if (viewItem.is('element', 'img') && viewItem.hasAttribute('alt'))
|
||||||
{
|
// {
|
||||||
// Special case for images - use alt attribute if it is provided.
|
// // Special case for images - use alt attribute if it is provided.
|
||||||
text = viewItem.getAttribute('alt');
|
// text = viewItem.getAttribute('alt');
|
||||||
}
|
// }
|
||||||
else if (viewItem.is('element', 'br'))
|
else if (viewItem.is('element', 'br'))
|
||||||
{
|
{
|
||||||
// A soft break should be converted into a single line break (#8045).
|
// A soft break should be converted into a single line break (#8045).
|
||||||
|
Loading…
Reference in New Issue
Block a user