Source:
- https://stackoverflow.com/questions/25579868/how-to-add-footnotes-to-github-flavoured-markdown
- https://www.markdownguide.org/extended-syntax/#fnref:bignote
Two possible footnote options:
- First option1
1: Footnote content goes here
| " | |
| " Local user config file | |
| " | |
| " last update: 2015.06.01 | |
| "======== | |
| " General | |
| "======== | |
| let g:usercolorscheme="harlequin" |
| #!/bin/sh | |
| # show cpu fequency, updating every 2 seconds | |
| watch -p -n 2 grep \"cpu MHz\" /proc/cpuinfo |
| ######################################################################################################### | |
| ## This is an example .gitignore file for Vivado, please treat it as an example as | |
| ## it might not be complete. In addition, XAPP 1165 should be followed. | |
| ## source: (1) https://www.xilinx.com/support/answers/61232.html | |
| ## (2) https://www.xilinx.com/Attachment/ar61232.txt | |
| ######################################################################################################### | |
| ######### | |
| #Exclude all | |
| ######### | |
| * |
| #!/usr/bin/env python3 | |
| """ | |
| execute a command N times | |
| """ | |
| import os | |
| import time | |
| x = 10 |
| # variables for vivado tools | |
| VERSION=2018.3 | |
| XILINX=$HOME/opt/Xilinx | |
| VIVADO=$XILINX/Vivado/$VERSION/bin | |
| SDK=$XILINX/SDK/$VERSION/bin | |
| DOCNAV=$XILINX/DocNav | |
| XIC=$XILINX/xic | |
| export PATH="$PATH:$VIVADO:$SDK:$DOCNAV:$XIC" |
| { | |
| "SavingBrowserHistoryDisabled" : true | |
| } |
| # Python RegEx list | |
| # Rafael do Nascimento Pereira <[email protected]> | |
| # | |
| # | |
| # References | |
| # | |
| # 1 - Pytho RegEx (with examples) | |
| # https://www.programiz.com/python-programming/regex | |
| # | |
| # 2 - online regex tester and debugger |
Source:
Two possible footnote options:
1: Footnote content goes here
| -- get current simulation time | |
| report "current simulation time = " & time'image(now); | |
| -- storing in a variable | |
| variable v_curtime : time := 0 ns; | |
| v_curtime := now; |
| " auto-install vim-plug | |
| if empty(glob('~/.config/nvim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| autocmd VimEnter * PlugInstall | source $MYVIMRC | |
| endif |