ReverseText: Easily Reverse Your Writing Online for Free

https://manajmnt-code.blogspot.com/2024/05/ReverseText-Online-for-Free.html

ReverseText is a convenient online tool that instantly reverses any text you input into its textarea. Whether you're looking to encrypt messages, create unique stylistic effects, or simply have fun, ReverseText provides a hassle-free solution. Best of all, it's completely free to use and has no limits on usage.

rev = arabic_alphabet.slice(); rev.reverse();

Text Transmute - Replace all Characters & Symbol in Text

https://manajmnt-code.blogspot.com/2024/05/Replace-all-Characters--Symbol-in-Text.html








Introducing TextTransmute, your ultimate solution for seamless character and symbol replacement in text! Tired of manually sifting through endless lines of text to replace characters and symbols? Say goodbye to tedious tasks with TextTransmute.

This powerful tool empowers you to effortlessly transform text by replacing characters and symbols with just a few clicks. Whether you're looking to streamline your data preprocessing pipeline or enhance the readability of your content, TextTransmute has got you covered.

With its intuitive interface, TextTransmute allows you to define custom replacement rules tailored to your specific needs. Want to substitute special symbols with their corresponding textual representations? No problem. Need to convert non-standard characters to their ASCII equivalents? TextTransmute makes it a breeze.

Custom permalink creator for blogger

https://manajmnt-code.blogspot.com/2024/02/Custom-permalink-creator-for-blogger.html

This helpful tool allows you to easily create custom URLs on your Blogger blog, ensuring that they are compatible with the platform and optimizing your website's performance. With its ability to delete unnecessary codes, you can rest assured that your URLs will be unique and professional-looking.

Meta keywords generator tool for Blogger

https://manajmnt-code.blogspot.com/2024/05/Meta-keywords-generator-tool-blogger.html


How to use this tool

This tool helps you to create a meta keywords tag in blogger, also add keywords to alt attribute for the first image of your blog post using javascript code, in the input field below write your keywords with comma to separate them (very important) and click generate to get your script.

Note important: press "ok" when you write every word in the input form to make comma with space like this (, ),
for exemple:keyword 1 + press 'ok' + keyword 2 + press 'ok' = keyword 1, keyword 2....

How to insert multiple elements into the middle of the content using JavaScript

https://manajmnt-code.blogspot.com/2024/01/how-to-insert-multiple-elements-into.html

How to add read more automatically in blogger without javascript - 2023

https://manajmnt-code.blogspot.com/2023/12/how-to-add-read-more-automatically-in.html

<b:eval expr='data:post.body snippet {length: 150}'/>This code displays a specific number of words, in this case the specific value is 150 characters

<b:if cond='data:post.featuredImage'> <img expr:src='resizeImage(data:post.featuredImage, 100, "16:9")'/> <b:else/> <img src='https://cdn.pixabay.com/photo/2023/04/22/10/28/sheep-7943526_640.jpg'/> </b:if>This code is a conditional function that checks the existence of the image in the article. If there is an image, you call it with data:post.featuredImage, and if there is no image, you set a default image<img src="url"/>

<

<

  • 1-step:go to dashboard in your blogger > edit html <data:post.body>
  • 2-step:Search for this code <data:post.body>
  • 3-step:replace this code with below code xml:

Counting lines, including html code after a specific line in a text using JavaScript

https://manajmnt-code.blogspot.com/2023/11/counting-lines-including-html-code.html

In this script, we first get the element containing the text using "document.getElementsByClassName()" and store it in a variable called "brl". We then split the text into an array of lines using "split("\n")" and count the number of lines using "length". We divide the result by two to determine where to insert our code.

Next, we define the code we want to inject using "var elem = "<hr>";" and replace the line of text at the specified position with the new content using "brl.innerHTML.replace()". Finally, we update the inner HTML of the element using "brl.innerHTML".

Note that you'll need to modify the JavaScript code to suit your specific needs, such as adjusting the location of the code injection or adding more complex logic.