<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: hxrshxd</title>
    <description>The latest articles on DEV Community by hxrshxd (@harshad69).</description>
    <link>https://dev.to/harshad69</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F488658%2Fde45e1e3-4480-4f8c-ae5b-7ca5aa52474e.jpg</url>
      <title>DEV Community: hxrshxd</title>
      <link>https://dev.to/harshad69</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/harshad69"/>
    <language>en</language>
    <item>
      <title>Rerender react element</title>
      <dc:creator>hxrshxd</dc:creator>
      <pubDate>Wed, 29 Jun 2022 16:58:40 +0000</pubDate>
      <link>https://dev.to/harshad69/rerender-react-element-2080</link>
      <guid>https://dev.to/harshad69/rerender-react-element-2080</guid>
      <description>&lt;p&gt;Day 10 of #100daysofcode&lt;/p&gt;

&lt;p&gt;Today we will learn about rendering in react.&lt;br&gt;
Our initial code will be :&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Z5sIbHm0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cg41njx9ujf8lsdege4a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Z5sIbHm0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cg41njx9ujf8lsdege4a.png" alt="Image description" width="800" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As you can see, we have our &lt;code&gt;rootelement&lt;/code&gt;, followed by a &lt;code&gt;time&lt;/code&gt; variable that returns local time. Following that, we have a variable &lt;code&gt;element&lt;/code&gt; that displays our time in &lt;code&gt;div&lt;/code&gt;. The element is then rendered in &lt;code&gt;rootelement&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;If you run this code, you will notice that the time does not change continuously, but you must refresh the page for the time to be displayed correctly. We will need to write this for it.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CZgxXFTS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/igrtw4g8d1sb5xdazp7n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CZgxXFTS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/igrtw4g8d1sb5xdazp7n.png" alt="Image description" width="800" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can see that we have our code in &lt;code&gt;function tick&lt;/code&gt; and have &lt;code&gt;setInterval&lt;/code&gt; to run every second. The time will now be displayed appropriately without the need to reload the website.&lt;/p&gt;

&lt;p&gt;You may be wondering what the point of this is. If you look at the code, you'll notice that our &lt;code&gt;div&lt;/code&gt; is changing all the time.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8azzEo7V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f80lbo6j01v6k7f36wtd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8azzEo7V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f80lbo6j01v6k7f36wtd.png" alt="Image description" width="385" height="228"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's create some additional code to figure out what's going on.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cip1TwJI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/249h7he4vyg04xbpb468.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cip1TwJI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/249h7he4vyg04xbpb468.png" alt="Image description" width="772" height="562"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We used &lt;code&gt;react.Fragment (&amp;lt;&amp;gt;&amp;lt;/&amp;gt;)&lt;/code&gt; to have two &lt;code&gt;divs&lt;/code&gt; one after the other. Let us now examine the code.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--yBRVMD8T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vxxz0dt9onndireuduwc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yBRVMD8T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vxxz0dt9onndireuduwc.png" alt="Image description" width="346" height="200"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;You can notice that only our &lt;code&gt;time div&lt;/code&gt; is rendering repeatedly. Because only what has to be rendered over and again is rendered, our page does not slow down.&lt;/p&gt;

&lt;p&gt;That's all for now.&lt;br&gt;
If you found this useful, please follow me on Twitter at &lt;a href="https://twitter.com/Hxrshxd"&gt;@Hxrshxd&lt;/a&gt; for more.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Understanding interpolation in JSX</title>
      <dc:creator>hxrshxd</dc:creator>
      <pubDate>Tue, 28 Jun 2022 16:48:49 +0000</pubDate>
      <link>https://dev.to/harshad69/understanding-interpolation-in-jsx-1hd1</link>
      <guid>https://dev.to/harshad69/understanding-interpolation-in-jsx-1hd1</guid>
      <description>&lt;p&gt;Day 9 of #100daysofcode&lt;/p&gt;

&lt;p&gt;Today we'll learn about interpolation in JSX. Our initial code will be :&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iYdYX6BV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/40qplpp34u7see2agsoj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iYdYX6BV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/40qplpp34u7see2agsoj.png" alt="Image description" width="800" height="445"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We have our div in &lt;code&gt;rootElement&lt;/code&gt;, followed by a function component that receives text as props and returns null. Following that, you can see that we have an element variable that takes &lt;code&gt;react.fragment (&amp;lt;&amp;gt;&amp;lt;/&amp;gt;)&lt;/code&gt;. Inside that, we're utilizing our function component, which takes our text and counts the characters in it, displaying the output as something like :&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VpCLGbPk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qcuizts5en6pojyulbbw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VpCLGbPk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qcuizts5en6pojyulbbw.png" alt="Image description" width="800" height="308"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The element is then rendered. We must now write code in our function component. That will be :&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LZ402BPn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fiy9dfeqo2pibh1xrnkt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LZ402BPn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fiy9dfeqo2pibh1xrnkt.png" alt="Image description" width="800" height="228"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can see in the &lt;code&gt;function CharacterCount&lt;/code&gt; that we have a JSX syntax &lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt; that takes JavaScript syntax with the help of in that we used backtext `` which allows us to use our prop text after that we are using a ternary operator which checks whether the input text has length or not. If it does, we will display the length of the content in a strong tag; otherwise, we will display "NO". Finally, we have the string. When we execute our code, we should get something like this.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--o4d6GSTj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sn0jzw4o3xg4nyan7rbb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--o4d6GSTj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sn0jzw4o3xg4nyan7rbb.png" alt="Image description" width="776" height="269"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is a simple code, but when you understand it, you will notice the interpolation. Let us examine it.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6mYwomIl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6yetksxu9q3doimo838y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6mYwomIl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6yetksxu9q3doimo838y.png" alt="Image description" width="800" height="612"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;First, we have our HTML code, which continues until &lt;code&gt;script tag&lt;/code&gt;, after which our JavaScript code begins until &lt;code&gt;div&lt;/code&gt;, with &lt;code&gt;div tag&lt;/code&gt; JSX code begins, but right after that our JavaScript code begins with, which continues until &lt;code&gt;strong tag&lt;/code&gt;, with &lt;code&gt;strong tag&lt;/code&gt; JSX code begins, inside that &lt;code&gt;strong tag&lt;/code&gt; you can see JavaScript code, and JSX code ends with closing &lt;code&gt;strong tag&lt;/code&gt;. then JavaScript code begins until the closing &lt;code&gt;div tag&lt;/code&gt;, then JavaScript code resumes until our &lt;code&gt;react.fragment&lt;/code&gt; , which begins our JSX code. With&lt;code&gt;&amp;lt;/&amp;gt;&lt;/code&gt;, the JSX code finishes and the JavaScript code begins. Then there's our HTML code.&lt;/p&gt;

&lt;p&gt;As you can see, the code is basic, but the interpolation is rather complex. We can use JSX code more successfully if we understand interpolation.&lt;/p&gt;

&lt;p&gt;That's all for now.&lt;br&gt;
If you found this useful, please follow me on Twitter &lt;a href="https://twitter.com/Hxrshxd"&gt;@Hxrshxd&lt;/a&gt; for updates.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is a cookie? (website)</title>
      <dc:creator>hxrshxd</dc:creator>
      <pubDate>Mon, 27 Jun 2022 09:08:05 +0000</pubDate>
      <link>https://dev.to/harshad69/what-is-a-cookies-website-4efm</link>
      <guid>https://dev.to/harshad69/what-is-a-cookies-website-4efm</guid>
      <description>&lt;p&gt;Cookies were introduced to store data. Cookies are used to store information on the client system. Cookies are sent to the server with the request and to the client in response, therefore cookies are sent to the server with every request.&lt;/p&gt;

&lt;p&gt;Cookies aid in providing a better user experience and tailored content to the user. Cookies can be created, updated, or read using JavaScript: document.Cookies .&lt;/p&gt;

&lt;p&gt;Cookies are classified into two categories.&lt;/p&gt;

&lt;p&gt;a) Session cookies&lt;br&gt;
They do not have any special properties such as Expire or Max Age. When the user exits the browser, they are removed.&lt;/p&gt;

&lt;p&gt;b) Persistent cookies&lt;br&gt;
They have specific properties such as Expire or Max Age. They are not removed when the browser is closed, but rather when specific attributes are met.&lt;/p&gt;

&lt;p&gt;source : &lt;a href="https://www.xenonstack.com/insights/local-vs-session-storage-vs-cookie#:~:text=For%20most%20cases%2C%20we%20use,is%20closed%20by%20the%20user."&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That's all to this article.&lt;/p&gt;

&lt;p&gt;If this article was helpful to you, make sure to send this to your friend or someone who might need and follow me on twitter &lt;a href="https://twitter.com/Hxrshxd"&gt;@Hxrshxd &lt;/a&gt;for more.&lt;/p&gt;

</description>
      <category>html</category>
      <category>cookies</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>What is the DOCTYPE Declaration in HTML?</title>
      <dc:creator>hxrshxd</dc:creator>
      <pubDate>Sun, 26 Jun 2022 08:58:50 +0000</pubDate>
      <link>https://dev.to/harshad69/what-is-the-doctype-declaration-in-html-51c0</link>
      <guid>https://dev.to/harshad69/what-is-the-doctype-declaration-in-html-51c0</guid>
      <description>&lt;p&gt;The doctype is declared in the first line of HTML or XHTML. It tells the browser what version of HTML code is being utilized.&lt;/p&gt;

&lt;p&gt;Doctype syntax for html5 and beyond&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wpTzV3h4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5kmhb1ou3g1u6b5wmnpt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wpTzV3h4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5kmhb1ou3g1u6b5wmnpt.png" alt="Image description" width="728" height="376"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Doctype syntax for html 4.01&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--QLAfLvD---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yystab70wikllu2v262k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QLAfLvD---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yystab70wikllu2v262k.png" alt="Image description" width="880" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Web standards were not agreed upon within the first year of HTML. So when someone wrote html code, they had to build it with a certain browser in mind, which implies the code might not work the same way in different browsers.&lt;/p&gt;

&lt;p&gt;As a result, the World Wide Web Consortium (W3C) developed some standards that everyone had to follow. The code can be rendered across web browsers if these standards are followed.&lt;/p&gt;

&lt;p&gt;That is why web developers were required to include doctype at the beginning of their code.&lt;/p&gt;

&lt;p&gt;source : &lt;a href="https://www.freecodecamp.org/news/what-is-the-doctype-declaration-in-html/#:~:text=The%20DOCTYPE%20declaration%20is%20an,document%20type%20definition%20(DTD)."&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That concludes this article.&lt;/p&gt;

&lt;p&gt;If you found this article useful follow me on twitter &lt;a href="https://twitter.com/Hxrshxd"&gt;@Hxrshxd&lt;/a&gt; for more.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to validate custom React component prop using proptype</title>
      <dc:creator>hxrshxd</dc:creator>
      <pubDate>Sat, 25 Jun 2022 17:43:08 +0000</pubDate>
      <link>https://dev.to/harshad69/how-to-validate-custom-react-component-prop-using-proptype-31ba</link>
      <guid>https://dev.to/harshad69/how-to-validate-custom-react-component-prop-using-proptype-31ba</guid>
      <description>&lt;p&gt;Day 7 of #100daysofcode&lt;br&gt;
Today we will learn how to validate custom React component props with proptype. Our initial code will be :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GjnW3wm9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sc4de4o7d7gosw70bzip.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GjnW3wm9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sc4de4o7d7gosw70bzip.png" alt="Image description" width="800" height="426"&gt;&lt;/a&gt;&lt;br&gt;
When you create a React component, others may want to use it and may not utilize it correctly. As you can see, we have a react function component that takes &lt;code&gt;firstname&lt;/code&gt; and &lt;code&gt;lastname&lt;/code&gt; as input and returns the result. As you've seen, we gave false as an input to our &lt;code&gt;firstname&lt;/code&gt; and nothing to our &lt;code&gt;lastname&lt;/code&gt; in the &lt;code&gt;const element&lt;/code&gt;, but we want both &lt;code&gt;firstname&lt;/code&gt; and &lt;code&gt;lastname&lt;/code&gt; as strings. We will utilize a feature proptype to evaluate how props given to the component are used.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pk70G9ER--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/en8j5qklt582lkruq4xt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pk70G9ER--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/en8j5qklt582lkruq4xt.png" alt="Image description" width="800" height="236"&gt;&lt;/a&gt;&lt;br&gt;
Here we have a function that checks whether or not our &lt;code&gt;propName&lt;/code&gt; is a string. If not, an &lt;code&gt;error&lt;/code&gt; message is displayed. If you want the same thing for &lt;code&gt;lastname&lt;/code&gt;, we must repeat what we did for &lt;code&gt;firstname&lt;/code&gt;. Instead, we can create a variable like :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--NhPR7ow9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/thb5vig4fca9a7bhf4in.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--NhPR7ow9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/thb5vig4fca9a7bhf4in.png" alt="Image description" width="800" height="310"&gt;&lt;/a&gt;&lt;br&gt;
This is so popular that the react team created a package on npm that you can use with this :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RYRb8bJt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/78sp6ro7tzvswgbth94b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RYRb8bJt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/78sp6ro7tzvswgbth94b.png" alt="Image description" width="800" height="205"&gt;&lt;/a&gt;&lt;br&gt;
You can also use this to determine whether your prop is a string, boolean, array, or something else. More information can be found &lt;a href="https://www.npmjs.com/package/prop-types"&gt;here&lt;/a&gt;.&lt;br&gt;
Our finished code should look something like this :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Ixa63MTq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n9ry4twtmsrqkx3aasg0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Ixa63MTq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n9ry4twtmsrqkx3aasg0.png" alt="Image description" width="800" height="528"&gt;&lt;/a&gt;&lt;br&gt;
That's all there is to toady.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
