Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

markdown

How to disply two markdown code blocks side by side

April 11, 2024 by Tarik

There is no way to create multi-line code blocks in a single table cell using bare Markdown syntax – but you can use verbatim HTML to accomplish this. Here is an example two-column table with side-by-side code (note that this HTML goes side-by-side with the rest of your Markdown): # Document Title The usual [Markdown … Read more

Categories markdown Tags markdown Leave a comment

Displaying latex equation in gitlab wiki using the markdown editor

April 10, 2024 by Tarik
Categories markdown Tags gitlab, gitlab-ci, markdown Leave a comment

R Markdown Math Equation Alignment

April 8, 2024 by Tarik
Categories r Tags latex, markdown, r, tex Leave a comment

How do I add my Stack Overflow reputation as a live badge on GitHub?

April 8, 2024 by Tarik

Another easy solution is to use the flair feature that’s built into Stack Exchange: Edit your profile Click on “Flair” in the sidebar: Copy the HTML shown on that page and paste it into your README.md By default, flair images look like this: There are options on the flair page for changing the theme as … Read more

Categories github Tags badge, github, markdown, shields.io Leave a comment

How to I change the size of an image in Github/Markdown?

April 5, 2024 by Tarik

You can change the size of an image in GitHub markdown by using the image link in an HTML img tag: From this: ![image](https://user-images.githubusercontent.com/link-to-your-image.png) To this: <img src=”https://user-images.githubusercontent.com/link-to-your-image.png” width=”200″ />

Categories html Tags github, html, markdown Leave a comment

How to put (in markdown) an inline code block that only contains a backtick character (`)

April 3, 2024 by Tarik

This one is actually given as an example by John Gruber himself. You can see from the Markdown documentation that you should write “ ` “ to get `.

Categories markdown Tags markdown Leave a comment

Convert Markdown links to HTML with Pandoc

April 2, 2024 by Tarik

Example with the built-in Lua filters: — links-to-html.lua function Link(el) el.target = string.gsub(el.target, “%.md”, “.html”) return el end Then: pandoc -f markdown -t html5 input.md -o output.html –lua-filter=links-to-html.lua

Categories html Tags html, hyperlink, markdown, pandoc Leave a comment

How to include two pictures side by side in for IPython Notebook (Jupyter)

March 29, 2024 by Tarik

You can create tables using pipes and dashes like this. A | B – | – ![alt](yourimg1.jpg) | ![alt](yourimg2.jpg) see GitHub Docs: Organizing information with tables

Categories python Tags image, jupyter, jupyter-notebook, markdown, python Leave a comment

Multi-line bullet list item in Markdown

February 14, 2024 by Tarik

Two spaces at the end of line are used to insert a line-break. Example (replace the two dots with two spaces!): * Item.. some indented text This will render as: Item some indented text

Categories markdown Tags markdown Leave a comment

Change font in Github Flavored markdown for Table

January 8, 2024 by Tarik

I have managed to make the font size small in table by using <sub>…</sub> tag. Achieved this by Wrapping each line of text (inside td) under <sub>…</sub>. UPDATED WIKI LINK

Categories github Tags github, github-flavored-markdown, markdown Leave a comment
Older posts
Page1 Page2 … Page33 Next →

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa