

{"id":111722,"date":"2023-01-31T10:00:40","date_gmt":"2023-01-31T04:30:40","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=111722"},"modified":"2023-01-31T10:08:56","modified_gmt":"2023-01-31T04:38:56","slug":"nano-editor-in-linux","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/","title":{"rendered":"Nano Editor in Linux"},"content":{"rendered":"<p>In this article, we will learn everything about the Nano editor in Linux-based operating systems. We will look at what the Nano editor is, why it is used, how to install it, and the options and keystrokes used while editing documents in the Nano editor. In the end, we will also look at some fantastic practical examples of the Nano editor by testing out the various keystrokes and combinations to understand its working. So pay attention, take notes, and read all the way to the end for the best benefits.<\/p>\n<h3>What is Nano editor in Linux?<\/h3>\n<p>The nano editor is a command line-based user-friendly text editor in Linux-based operating systems. With the advanced keystrokes and simple GUI, it is one of the most recommended and used text editors. The nano editor is one of the simplest text editors, however, don\u2019t mistake it for the lack of features!<\/p>\n<p>In Linux, there are many text editors like Vi, Gedit, Vim, Emacs and so many more. The one difference between all these and GNU nano is that it does not have any modes. Also, the learning curve for most of these, especially Vim and Emacs is very steep, unlike nano, which you can master in a couple of hours!<\/p>\n<p>Despite its simplicity, the nano editor is feature loaded. Some include syntax highlighting, multiple buffers, search and replace with regular expression support, spellchecking, UTF-8 encoding, and so many more. Yup! Sound intimidating right?<\/p>\n<p>Well, we will start right from the basics like how to create and open a file, edit a file, save a file, search and replace text, cut and paste text, and only then move to more advanced topics.<\/p>\n<h3>How to install the nano text editor?<\/h3>\n<p>Most of the Linux distributions already come with the Nano editor preinstalled. However, if your Linux distro does not have it, or if you uninstalled it, you can always install it using the commands shown below with respect to your Linux distro:<\/p>\n<p><strong>Installing Nano editor on Debian-based Linux distributions<\/strong><\/p>\n<p>If you want to download the Nano editor on Debian-based Linux distros like Kali, Ubuntu, Deepin, ParrotOS, Mint, MX Linux, Pure OS, AntiX, etc, use the command shown below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo apt install nano<\/pre>\n<p><strong>Installing Nano editor on Fedora-based Linux distributions<\/strong><\/p>\n<p>If you want to download the Nano editor on Fedora-based Linux distros like Berry Linux, Qubes, Fedora spins, Clear OS, Korora, Hanthana, Arquetype, etc, use the command shown below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo yum install nano<\/pre>\n<p>Now that we have laid down the basics, let us look at some fantastic examples in the terminal of Ubuntu 20.04 to understand how to Nano text editor works.<\/p>\n<h3>Creating a new file<\/h3>\n<p>To create a file, there are 2 ways, let us look at both of them. The first method is to simply run an empty \u2018nano\u2019 command, write your text, and then while exiting (ctrl + X) press confirm and then write the name of the file as shown below:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/writing-the-file-name.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111800\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/writing-the-file-name.webp\" alt=\"writing the file name\" width=\"1236\" height=\"614\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>Another method to create a new file is to simply specify the filename after the nano command as shown:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">nano &lt;filename&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/creating-a-new-file.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111799\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/creating-a-new-file.webp\" alt=\"creating a new file\" width=\"1109\" height=\"143\" \/><\/a><\/p>\n<p>You must note that if the filename you specified already exists, the nano editor will open that file instead of creating a new file, and this brings me to the next topic:<\/p>\n<h3>Opening an already existing file in nano editor<\/h3>\n<p>To open an already created file, simply run the nano command followed by the name of the file as shown:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">nano &lt;existing filename&gt;<\/pre>\n<p>If you are simply writing the name of the file, you must make sure that it is present in your current working directory. However, if you want to open a file that is present elsewhere in your filesystem all you have to do is specify the path of the file as shown:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">nano &lt;path of file&gt;<\/pre>\n<h3>Closing files in nano editor<\/h3>\n<p>Closing files is even simpler! All you have to do is press the key combination \u201cCtrl\u201d + \u201cX\u201d. Once you do so, the system prompts you to confirm by pressing either \u201cy\u201d for yes, \u201cn\u201d for no, or \u201c^c\u201d for cancel.<\/p>\n<p>Now that we know how to create files and close them let us look at how to edit them. But first, here is a cheat code: you can press \u201cctrl\u201d + \u201cg\u201d to display all of the possible key combinations that are used in the nano editor.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/help-menu-of-the-nano-editor.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111801\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/help-menu-of-the-nano-editor.webp\" alt=\"help menu of the nano editor\" width=\"1230\" height=\"612\" \/><\/a><\/p>\n<h3>Searching a file in nano editor<\/h3>\n<p>To search for a specific word or a part of a text in a file, all you have to do is press the key combination \u201cCtrl\u201d + \u201cW\u201d. This opens a prompt where you can enter the word or sentence that needs to be searched. This will show you all of the matches found, if you want to move to the next matched result, all you have to do is press the key combination \u201cAlt\u201d + \u201cW\u201d.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/searching-a-file.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111802\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/searching-a-file.webp\" alt=\"searching a file\" width=\"1234\" height=\"617\" \/><\/a><\/p>\n<h3>Searching regular expressions in nano editor<\/h3>\n<p>Just like we searched normal strings, we can also search regular expressions by using the key combination \u201cAlt\u201d + \u201cR\u201d<\/p>\n<h3>Replacing text using nano editor<\/h3>\n<p>If you want to select some text and then replace it, we will have to first use the key combination \u201cCtrl\u201d + \u201cW\u201d then use the key combination \u201cCtrl\u201d + \u201cR\u201d. This will open a prompt where you can enter the text that you want to replace and one you press enter, you get to type the text you want to replace with.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/replacing-the-text-replacing-the-selected-string.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111804\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/replacing-the-text-replacing-the-selected-string.webp\" alt=\"replacing the text replacing the selected string\" width=\"1220\" height=\"616\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<h3>Selecting, copying, cutting, and pasting text in nano editor<\/h3>\n<p>No tutorial on handling text in a text editor is complete without the fundamental tasks of selecting, copying, cutting, and pasting, and you may have guessed by now that it is not as simple as \u201cctrl\u201d + \u201ca\u201d for selecting, \u201cctrl\u201d + \u201cc\u201d for copying and \u201cctrl\u201d + \u201cx\u201d for cutting and \u201cctrl\u201d + \u201cp\u201d for pasting.<\/p>\n<p>Instead, the key combinations are slightly different, In the nano text editor we use the \u201calt\u201d + \u201ca\u201d key combination and then use the arrow keys to move over the text. For copying text, we first select it and then use the key combination \u201cAlt\u201d + \u201c6\u201d, for cutting text, we use the key combination \u201cCtrl\u201d + \u201ck\u201d and to paste copies or cut text, we use the key combination \u201cCtrl\u201d + \u201cu\u201d.<\/p>\n<h3>Inserting another file into the current one in nano editor<\/h3>\n<p>While editing in the nano text editor you can even insert another text file into the one you are working on by using the key combination \u201cCtrl\u201d + \u201cR\u201d. Once you use this key combination, you will get a prompt to enter the path of the file you wish to insert as shown below:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/inserting-another-file-into-the-current-one.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111805\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/inserting-another-file-into-the-current-one.webp\" alt=\"inserting another file into the current one\" width=\"1234\" height=\"612\" \/><\/a><\/p>\n<h3>Saving a file in nano editor<\/h3>\n<p>We all know that saving a file in regular intervals is a good habit rather than waiting till the end to save it. In the nano text editor, we can save our file by using the key combination \u201cCtrl\u201d + \u201co\u201d.<\/p>\n<h3>Checking spellings in the nano editor<\/h3>\n<p>If you want to check your spellings in the nano editor, you will have to first install the package \u2018instant spell\u2019 by using the command shown below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo apt install spell<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/checking-spellings-in-the-nano-editor.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111806\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/checking-spellings-in-the-nano-editor.webp\" alt=\"checking spellings in the nano editor\" width=\"1108\" height=\"182\" \/><\/a><\/p>\n<p>Now that we have successfully installed the package, we can now check for spellings by using the key combination \u201cCtrl\u201d + \u201cT\u201d. This will select the misspelled word and ask for a correct replacement.<\/p>\n<h3>Nano text editor key combination cheat sheet<\/h3>\n<p>If there is one thing that is slightly hard in the entire concept of nano editor in Linux-based operating systems, it will be to remember the various key combinations and to add to the twist, these key combinations are not the typical key combination you would use in your day to day activities on your PC. Well here is a cheat sheet containing 23 of the most frequently used key combinations in the nano editor:<\/p>\n<p>1. move forward one character: Ctrl+F<br \/>\n2. move back one character: Ctrl+B<br \/>\n3. move forward one word: Ctrl+Space<br \/>\n4. move back one word: Alt+Space<br \/>\n5. move to the previous line: Ctrl+P<br \/>\n6. move to the next line: Ctrl+N<br \/>\n7. move to the next page: Ctrl+V<br \/>\n8. move to the previous page: Ctrl+Y<br \/>\n9. move to the beginning of the line: Ctrl+A<br \/>\n10. move to the end of the line: Ctrl+E<br \/>\n11. Copy the selected text: Alt+6<br \/>\n12. Cut the selected text: Ctrl+k<br \/>\n13. Paste the selected text: Ctrl+u<br \/>\n14. Cancel the selection: Ctrl+6<br \/>\n15. Undo last action: Ctrl+U<br \/>\n16. Redo last action: Ctrl+E<br \/>\n17. Searching for a text: Ctrl+w<br \/>\n18. Search and replace: Ctrl+\\<br \/>\n19. Saving file: Ctrl+o<br \/>\n20. Inserting a file: Ctrl+r<br \/>\n21. Checking for spelling: Ctrl+t<br \/>\n22. Move the cursor to a certain location: Ctrl+_<br \/>\n23. Exiting the editor: Ctrl+x<\/p>\n<h3>Summary<\/h3>\n<p>As you have seen, the nano editor is a simple text editor in Linux based operating systems that is very user-friendly yet slightly advanced at the same time. You have now learned what the Nano editor is, why it is used, how to install it, and the options and keystrokes used while editing documents in the Nano editor.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will learn everything about the Nano editor in Linux-based operating systems. We will look at what the Nano editor is, why it is used, how to install it, and the&#46;&#46;&#46;<\/p>\n","protected":false},"author":5,"featured_media":111774,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35],"tags":[27215],"class_list":["post-111722","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-nano-editor-in-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Nano Editor in Linux - DataFlair<\/title>\n<meta name=\"description\" content=\"nano editor is a simple text editor in Linux based operating systems that is very user-friendly yet slightly advanced. Learn more about it.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Nano Editor in Linux - DataFlair\" \/>\n<meta property=\"og:description\" content=\"nano editor is a simple text editor in Linux based operating systems that is very user-friendly yet slightly advanced. Learn more about it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-31T04:30:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-31T04:38:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-nano-editor.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Nano Editor in Linux - DataFlair","description":"nano editor is a simple text editor in Linux based operating systems that is very user-friendly yet slightly advanced. Learn more about it.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Nano Editor in Linux - DataFlair","og_description":"nano editor is a simple text editor in Linux based operating systems that is very user-friendly yet slightly advanced. Learn more about it.","og_url":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2023-01-31T04:30:40+00:00","article_modified_time":"2023-01-31T04:38:56+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-nano-editor.webp","type":"image\/webp"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823"},"headline":"Nano Editor in Linux","datePublished":"2023-01-31T04:30:40+00:00","dateModified":"2023-01-31T04:38:56+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/"},"wordCount":1461,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-nano-editor.webp","keywords":["Nano Editor in Linux"],"articleSection":["Linux Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/","url":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/","name":"Nano Editor in Linux - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-nano-editor.webp","datePublished":"2023-01-31T04:30:40+00:00","dateModified":"2023-01-31T04:38:56+00:00","description":"nano editor is a simple text editor in Linux based operating systems that is very user-friendly yet slightly advanced. Learn more about it.","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-nano-editor.webp","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/01\/linux-nano-editor.webp","width":1200,"height":628,"caption":"linux nano editor"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/nano-editor-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Linux Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"Nano Editor in Linux"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team creates expert-level guides on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our goal is to empower learners with easy-to-understand content. Explore our resources for career growth and practical learning.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam1\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111722","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=111722"}],"version-history":[{"count":3,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111722\/revisions"}],"predecessor-version":[{"id":111807,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111722\/revisions\/111807"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/111774"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=111722"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=111722"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=111722"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}